❓ Quiz Python

Que va afficher ce code ?

PYTHONDebutantlistes
20
quiz.py
1
a = [1, 2, 3]
2
b = a
3
a += [4]
4
print(b)