❓ Quiz Python

Quelle valeur est affichée dans la console ?

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