How to find the last occurrence index of a specified value in a string in Python

2 Answers

0 votes
s = "python php java c python c++"

i = s.rindex("python")

print(i)


'''
run:
 
18
 
'''

 



answered Jan 9, 2019 by avibootz
0 votes
s = "python php java c python c++"

i = s.rindex("c")

print(i)


'''
run:
 
25
 
'''

 



answered Jan 9, 2019 by avibootz
...