❓ Quiz Python

Quel est le type retourné par cette expression ?

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