Getting part of a string Suggest EditsPython>>>mystr = "abcdefghijkl" >>>mystr[-4:] 'ijkl' Updated less than a minute ago