Python-Quizzes | Python Tuples Quiz | Question 4

Last Updated :
Discuss
Comments

What is the output of the following program?

Python
tup = (1, 2, 3) 
print(2 * tup) 

(1, 2, 3, 1, 2, 3)

(1, 2, 3, 4, 5, 6)

(3, 6, 9)

Error

Share your thoughts in the comments