What Will Be The Output Of The Following Python Code And State #732
What will be the output of the following Python code and state the type of copy that is depicted?</p> <pre><code class="language-python">l1=[2, 4, 6, 8] l2=[1, 2, 3] l1=l2 l2</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Argument Passing, Variables and Recursion - Python Shallow Copy vs Deep Copy - Quiz No.1.
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
[2, 4, 6, 8], shallow copy
[2, 4, 6, 8], deep copy
[1, 2, 3], shallow copy
[1, 2, 3], deep copy