demo_ref_string_rfind.py:
txt = "Mi casa, su casa." x = txt.rfind("casa") print(x)
C:\Users\My Name>python demo_string_rfind.py
12