Examveda

What will the following code output:
my_tuple = (1, 2, 3)
new_tuple = my_tuple.copy()
print(new_tuple)

A. (1, 2, 3)

B. (1, 2, 3, 1, 2, 3)

C. (1, 1, 2, 2, 3, 3)

D. (2, 1, 3)

Answer: Option A


This Question Belongs to Python Program >> Tuples In Python

Join The Discussion

Related Questions on Tuples in Python