描述
Python rindex() 方法返回子字符串最后一次出現(xiàn)在字符串中的索引位置,該方法與 rfind() 方法一樣,只不過如果子字符串不在字符串中會報一個異常。
語法
rindex() 方法語法:
S.rindex(sub[,start=0[,end=len(S)]])
參數(shù)
- sub -- 指定檢索的子字符串
- S -- 父字符串
- start -- 可選參數(shù),開始查找的位置,默認為0。(可單獨指定)
- end -- 可選參數(shù),結束查找位置,默認為字符串的長度。(不能單獨指定)
返回值
返回子字符串最后一次出現(xiàn)在字符串中的的索引位置,如果沒有匹配項則會報一個異常。
實例
以下實例展示了 rindex() 方法的使用方法:
#!/usr/bin/python3
S1 = "this is really a string example....wow!!!"
S2 = "is"
print (S1.rindex(S2))
print (S1.rindex(S2,10))
以上實例輸出結果如下:
5
Traceback (most recent call last):
File "test.py", line 6, in module>
print (str1.rindex(str2,10))
ValueError:substring not found
到此這篇關于Python rindex()方法案例詳解的文章就介紹到這了,更多相關Python rindex()方法內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Python 實現(xiàn)靜態(tài)鏈表案例詳解
- Python 概率生成問題案例詳解
- Python 二叉樹的概念案例詳解
- Python實現(xiàn)堆排序案例詳解
- python讀取mnist數(shù)據集方法案例詳解
- 超實用的 10 段 Python 案例