Skip to content

Program-4.py

1
2
3
4
5
6
# Find length of any tuple

tup = (1, 2, 3, 4, 5)
length_of_tuple = len(tup)

print("Length of Tuple: ", length_of_tuple)