find last index of string python code example

Example 1: 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)

Example 2: lastindexof python

# using rindex() 
test_string = "abcabcabc"
  
# using rindex() 
# to get last element occurrence 
res = test_string.rindex('c')   
# printing result 
print ("The index of last element occurrence: " + str(res))

OUTPUT:
  The index of last element occurrence: 8

Example 3: how to get last element of string in python

sample_str = 'Sample String'
# Get last character of string i.e. char at index position -1
last_char = sample_str[len(sample_str) - 1]
 
print('Last character : ', last_char)
# Output
Last charater : g