Comment sélectionner les 2 derniers éléments dans une chaîne Python

>>>mystr = "abcdefghijkl"
>>>mystr[-4:]
'ijkl'

>>>mystr[:-4] #to select all but last 4 characters
'abcdefgh'
Innocent Impala