Answers for "how to select last 2 elements in a string python"

11

how to select last 2 elements in a string python

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

>>>mystr[:-4] #to select all but last 4 characters
'abcdefgh'
Posted by: Guest on July-09-2020

Code answers related to "how to select last 2 elements in a string python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language