Python-Quizzes | Python Tuples Quiz | Question 1

Last Updated :
Discuss
Comments

What is the output of the following program?

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

1

2

5

Error

Share your thoughts in the comments