str.rfind(str, beg=0 end=len(string))
str -- 此選項指定要搜尋的字串
beg -- 這是起始索引,預設是0
end -- 這是結束索引,預設情況下其等於該字串的長度
#!/usr/bin/python3 str1 = "this is really a string example....wow!!!" str2 = "is" print (str1.rfind(str2)) print (str1.rfind(str2, 0, 10)) print (str1.rfind(str2, 10, 0)) print (str1.find(str2)) print (str1.find(str2, 0, 10)) print (str1.find(str2, 10, 0))
5 5 -1 2 2 -1