>>> tup = ('kom', 14, [67, -5], {1, 2, 3}) >>> >>> length = len(tup) >>> print(length) 4 >>> divresult = tup[2][0] // 15 >>> print(divresult) 4 >>>