1.

What is the output of the following piece of code when executed in Python shell? >>> a=("Check")*3 >>> a

A. (‘Check’,’Check’,’Check’)
B. * Operator not valid for tuples
C. (‘CheckCheckCheck’)
D. Syntax error
Answer» D. Syntax error


Discussion

No Comment Found