len tuple python code example
Example 1: python check tuple length
#!/usr/bin/python
tuple1, tuple2 = (123, 'xyz', 'zara'), (456, 'abc')
print "First tuple length : ", len(tuple1)
print "Second tuple length : ", len(tuple2)
# First tuple length : 3
# Second tuple length : 2
Example 2: how to get the size of a tuple in python
#use len(objects)
objects = [69, "420",66.6]
len(objects)
#returns 3