這篇文章主要介紹了Python中處理字符串之endswith()方法的使用,是Python入門中的基礎知識,需要的朋友可以參考下
endswith()方法返回true,如果字符串以指定後綴結尾,否則返回(False可選限制的匹配從給定的索引開始和結束)。
語法
以下是endswith()方法的語法:
?
1 str.endswith(suffix[, start[, end]])參數
suffix -- 這可能是一個字符串或者是元組用於查找後綴。
start -- 切片從此開始
end -- 切片到此為止
返回值
如果字符串以指定的後綴結束此方法返回true,否則返回false。
例子
下面的例子顯示了endswith()方法的使用。
?
1 2 3 4 5 6 7 8 9 10 11 #!/usr/bin/python str = "this is string example....wow!!!"; suffix = "wow!!!"; print str.endswith(suffix); print str.endswith(suffix,20); suffix = "is"; print str.endswith(suffix, 2, 4); print str.endswith(suffix, 2, 6);當我們運行上面的程序,它會產生以下結果:
?
1 2 3 4 True True True False