Liste des listes imbriquées
x = [3, 4, [7, 8]]
print(x[2][1])
# 8
Sore Sloth
x = [3, 4, [7, 8]]
print(x[2][1])
# 8