Open In App

Python-Quizzes | Python Tuples Quiz | Question 5

Question 5: What is the output of the following program?




tuple=("Check")*3
print(tuple

(A) Unexpected
(B) 3Check
(C) CheckCheckCheck
(D) Syntax Error

Answer: (C)
Explanation: Here (“Check”) will be treated as is a string not a tuple as there is no comma after the element.
Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :