❓ Quiz Python

Quel est le type retourné par cette expression ?

PYTHONDebutantlistes
20
quiz.py
1
lst = [1, 2, 3]
2
lst.append([4, 5])
3
lst.extend([6, 7])
4
print(lst)