Home / Programming MCQs / Python MCQs / Question

T

Tanmay • 2.43K Points
Master

Q. What will be the output of the following Python code and state the type of copy that is depicted?

Code:
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
(D) [1, 2, 3], deep copy

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.