❓ Quiz Python

Que va afficher ce code ?

PYTHONDebutantlistes
20
quiz.py
1
Quel sera le résultat de ce code Python ?
2
 
3
 x = [1, 2, 3]
4
 y = x
5
 y.append(4)
6
 print(x)