📌  相关文章
📜  python在另一个字符串中搜索一个字符串得到最后一个结果 - Python代码示例

📅  最后修改于: 2022-03-11 14:46:56.056000             🧑  作者: Mango

代码示例1
# Where in the text is the last occurrence of the string "casa"?
txt = "Mi casa, su casa."

x = txt.rfind("casa")

print(x)