Examveda

What will be the output of the following Python code?
>>>t = (1, 2)
>>>2 * t

A. (1, 2, 1, 2)

B. [1, 2, 1, 2]

C. (1, 1, 2, 2)

D. [1, 1, 2, 2]

Answer: Option A


This Question Belongs to Python Program >> Tuples In Python

Join The Discussion

Related Questions on Tuples in Python