Python3 string.endswith()方法

2019-10-16 23:10:55
如果字串以指定的字尾結束 endswith()方法返回 true,否則返回False,可選的限制匹配是使用給定的索引開始到結束內。

語法

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

引數

  • suffix -- 這可以是一個字串或者也有可能是元組使用字尾查詢

  • start -- 切片從這裡開始

  • end -- 切片到此結束

返回值

如果字串以指定的字尾結尾則返回TRUE,否則返回FALSE。

範例

#!/usr/bin/python3

Str='this is string example....wow!!!'
suffix='!!'
print (Str.endswith(suffix))
print (Str.endswith(suffix,20))
suffix='exam'
print (Str.endswith(suffix))
print (Str.endswith(suffix, 0, 19))

結果

True
True
False
True