1.

What is the output of the code shown below? l1=[1, 2, 3, (4)] l2=l1.copy() l2 l1

A. [1, 2, 3, (4)] [1, 2, 3, 4]
B. [1, 2, 3, 4] [1, 2, 3, (4)]
C. [1, 2, 3, 4] [1, 2, 3, 4]
D. [1, 2, 3, (4)] [1, 2, 3, (4)]
Answer» D. [1, 2, 3, (4)] [1, 2, 3, (4)]


Discussion

No Comment Found