+ 5
It means that every letter in a string and every item in a list has a number. The one most on the left has number 0, the one next to it on the right number 1 and so on.
s = "abcdefg"
print (s[0]) # prints a
print (s[1]) # prints b
For lists it works the same way.



