Vidyalelo
Python · Q159

Functions in Python

Programming · Python · question 159

Q159

What will be the output of the following Python code and state the type of copy that is depicted? l1=[2, 4, 6, 8] l2=[1, 2, 3] l1=l2 l2

A.
[2, 4, 6, 8], shallow copy
B.
[2, 4, 6, 8], deep copy
C.
[1, 2, 3], shallow copy
Answer
D.
[1, 2, 3], deep copy

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board