🎯

Guess the Output

Can you predict what these code snippets print?

Question 1 of 15
Score: 0 / 0
Python

What does this code print?

x = [1, 2, 3]
y = x
y.append(4)
print(x)