Q. What this code of Python will return?
Code:
x = [1, 2, 3, 4, 5] y = x y[0] = 100 print(x)
β
Correct Answer: (D)
[100,2,3,4,5]
x = [1, 2, 3, 4, 5] y = x y[0] = 100 print(x)
You must be Logged in to update hint/solution