Answers for "string select from last [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
0

python search a string in another string get last result

# Where in the text is the last occurrence of the string "casa"?
txt = "Mi casa, su casa."

x = txt.rfind("casa")

print(x)
Posted by: Guest on January-23-2021

Code answers related to "string select from last [python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language