How to replace the last occurrence of a word in a string with Python

1 Answer

0 votes
def rreplace_word(s, old, new):
    lst = s.rsplit(old, 1)
    
    return new.join(lst)
    

s = 'python c c++ python java python c c#'    
    
s = rreplace_word(s, 'python', 'php')

print(s)



'''
run:

python c c++ python java php c c#

'''



 



answered Sep 7, 2022 by avibootz
...