rfind函数是Python中字符串对象的一个方法,用于查找指定子字符串在字符串中最后一次出现的位置,并返回该位置的索引值。如果未找到指定子字符串,则返回-1。该方法从字符串的右侧开始查找子字符串。
例如:
str = "Hello, welcome to Python programming" print(str.rfind("o")) # 输出: 31,"o"最后一次出现在索引位置31 print(str.rfind("z")) # 输出: -1,"z"未在字符串中出现