xxxxxxxxxx
# Where in the text is the last occurrence of the string "casa"?
txt = "Mi casa, su casa."
x = txt.rfind("casa")
print(x)
xxxxxxxxxx
string = "Hello, World!"
character = "o"
last_occurrence = string.rfind(character)
print(last_occurrence)