Python -Suche nach einer Zeichenfolge in einer anderen Zeichenfolge. Holen Sie sich das letzte Ergebnis

# Where in the text is the last occurrence of the string "casa"?
txt = "Mi casa, su casa."

x = txt.rfind("casa")

print(x)
knavels