Result Size:
625 x 571
demo_tuple.py:
thistuple = ("apple", "banana", "cherry") print(thistuple)
x
thistuple
=
(
"apple"
,
"banana"
,
"cherry"
)
print
(
thistuple
)
C:\Users\My Name>python demo_tuple.py
('apple', 'banana', 'cherry')