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