❓ Quiz Python

Ce code lève-t-il une erreur ?

PYTHONDebutantlistes
20
quiz.py
1
x = [1, 2, 3]
2
y = x
3
y.append(4)
4
print(x)