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