Given the following code:
x = y = z = 0 x = 10 print(y) // prints 0 x = y = z = [1, 2, 3, 4, 5] x[0] = 10 print(y) // prints [10, 2, 3, 4, 5]
Ho