❓ Quiz Python

Ce code lève-t-il une erreur ?

PYTHONDebutantlistes
20
quiz.py
1
x = [1, 2, 3] 
2
 x.insert(1, 4) 
3
 print(x)