Python-Quizzes | Python Tuples Quiz | Question 5

Last Updated :
Discuss
Comments

What is the output of the following program?

Python
tup=("Check")*3
print(tup) 

Unexpected

3Check

CheckCheckCheck

Syntax Error

Share your thoughts in the comments