demo_tuple_length.py:
thistuple = ("apple", "banana", "cherry") print(len(thistuple))
➜ begtut>python demo_tuple_length.py
3