❓ Quiz Python

Quelle est la valeur finale de x ?

PYTHONDebutantlistes
20
quiz.py
1
a = [[]] * 3
2
a[0].append(1)
3
print(a)