+ 1
Where is the 5? Can someone explain me this?
3 Respostas
+ 3
Obviously you won't see it because you are never accessing it.
list = [1,1,2,3,5,6,7,8]
print(list)
print(list[1])
print(list[1])
print(list[2])
print(list[3])
print(list[5])
print(list[6])
print(list[7])
Which means you skipped 5.