❓ Quiz Python
Que se passe-t-il à l'exécution ?
PYTHONDebutantlistes
20
quiz.py
1
Quel sera le résultat de ce code Python ?2
3
x = [1, 2, 3]4
y = x.copy()5
y.append(4)6
print(x)