demo_ref_string_rindex.py:
txt = "Mi casa, su casa." x = txt.rindex("casa") print(x)
➜ begtut>python demo_string_rindex.py
12