Result Size: 625 x 571
โ€‹x
 
tuple1 = ("apple", "banana", "cherry")
tuple2 = (1, 5, 7, 9, 3)
tuple3 = (True, False, False)
โ€‹
print(tuple1)
print(tuple2)
print(tuple3)
โ€‹
('apple', 'banana', 'cherry')
(1, 5, 7, 9, 3)
(True, False, False)