Python3 endswith()方法

Python3 字符串 Python3 字符串


描述

endswith() 方法用于判斷字符串是否以指定后綴結(jié)尾,如果以指定后綴結(jié)尾返回True,否則返回False??蛇x參數(shù)"start"與"end"為檢索字符串的開(kāi)始與結(jié)束位置。

語(yǔ)法

endswith()方法語(yǔ)法:

str.endswith(suffix[, start[, end]])

參數(shù)

  • suffix -- 該參數(shù)可以是一個(gè)字符串或者是一個(gè)元素。
  • start -- 字符串中的開(kāi)始位置。
  • end -- 字符中結(jié)束位置。

返回值

如果字符串含有指定的后綴返回True,否則返回False。

實(shí)例

以下實(shí)例展示了endswith()方法的實(shí)例:

#!/usr/bin/python3

Str='W3CSchool example....wow!!!'
suffix='!!'
print (Str.endswith(suffix))
print (Str.endswith(suffix,20))
suffix='run'
print (Str.endswith(suffix))
print (Str.endswith(suffix, 0, 19))

以上實(shí)例輸出結(jié)果如下:

True
True
False
False

Python3 字符串 Python3 字符串