Answers for "get last two character pytohn slicing"

15

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 "get last two character pytohn slicing"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language