您好,登錄后才能下訂單哦!
Python endswith()的使用方法?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
描述
Python endswith() 方法用于判斷字符串是否以指定后綴結尾,如果以指定后綴結尾返回True,否則返回False。可選參數"start"與"end"為檢索字符串的開始與結束位置。
語法
endswith()方法語法:
string.endswith(suffix[, start[, end]]) # 自Python2.5版本起,還支持接收一個 tuple 為參數 string.endswith(tuple) # 滿足tuple任何一個都返回True
參數
suffix -- 該參數可以是一個字符串或者是一個元素This could be a string or could also be a tuple of suffixes to look for.
start -- 字符串中的開始位置。
end -- 字符中結束位置。
返回值
如果字符串含有指定的后綴返回True,否則返回False。
實例
以下實例展示了endswith()方法的實例:
#!/usr/bin/python string = "this is string example....wow!!!"; suffix = "wow!!!"; print string.endswith(suffix); print string.endswith(suffix,20); suffix = "is"; print string.endswith(suffix, 2, 4); print string.endswith(suffix, 2, 6); print '-----------------------------' string1 = 'abc' string2 = 'xyz' string3 = 'twz' for string in [string1,string2,string3]: print string.endswith(('a','x'))
以上實例輸出結果如下:
True True True False ----------------------------- True True False
看完上述內容,你們掌握Python endswith()的使用方法的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。