On http://docs.python.org/py3k/tutorial/introduction.html: code prints instead of word[4] 'p' 'A' word[0:2] 'AH' 'He' word[2:4] 'el' 'lp'
word[4]
'p'
'A'
word[0:2]
'AH'
'He'
word[2:4]
'el'
'lp'