demo_tuple_len.py:
thistuple = tuple(("apple", "banana", "cherry")) print(len(thistuple))
C:\Users\My Name>python demo_tuple_len.py
3