Mega Code Archive

 
Categories / Python / String
 

An index that is too large is replaced by the string size

word = 'Help' + 'A' print word[:2]    # The first two characters print word[2:]    # All but the first two characters print word[1:100] print word[10:] print word[2:1]