What will the output of the following program be where T1 = (2, 4, 6)?

Code

T1 = (2, 4, 6)
T1.append((1, 3, 5, 7))
print(len(T1))

Comments