

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the code shown below? l=[2, 3, [4, 5]] l2=l.copy() l2[0]=88 l l2 |
A. | [88, 2, 3, [4, 5]] [88, 2, 3, [4, 5]] |
B. | [2, 3, [4, 5]] [88, 2, 3, [4, 5]] |
C. | [88, 2, 3, [4, 5]] [2, 3, [4, 5]] |
D. | [2, 3, [4, 5]] [2, 3, [4, 5]] |
Answer» C. [88, 2, 3, [4, 5]] [2, 3, [4, 5]] | |