返回查詢字串的索引位置,如果沒找到丟擲異常
a='mark is cool'
print(a.index('xss'))
# valueerror: substring not found
返回查詢字串的索引位置,如果沒找到返回-1
a='mark is cool'
print(a.find('xss'))
# -1
直接使用字串的索引訪問的切片功能
mystr= 'hello mark'
print(mystr[6::]) # mark
print(mystr[6:8]) # ma
print(mystr[:len(mystr)-2]) # hello ma
Python字串操作
1 複製字串 str2 str1 2 鏈結字串 str abc 3 查詢字串 string.find sub string.index sub string.rfind sub string,rindex sub 4 字串比較 cmp str1,str2 cmp str1.upper str2.up...
Python字串操作
python如何判斷乙個字串只包含數字字元 python 字串比較 下面列出了常用的python實現的字串操作 strcpy sstr1,sstr2 sstr1 strcpy sstr2 sstr1 sstr1 strcpy2 print sstr2 strcat sstr1,sstr2 sstr1...
python字串操作
在 python 有各種各樣的string操作函式。在歷史上string類在 python 中經歷了一段輪迴的歷史。在最開始的時候,python 有乙個專門的string的module,要使用string的方法要先import,但後來由於眾多的 python 使用者的建議,從 python 2.0開...