❓ Quiz Python

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

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