Python endswith()方法

2021-09-04 14:39 更新

Python endswith()方法


描述

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

語法

endswith()方法語法:

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

參數(shù)

  • suffix -- 該參數(shù)可以是一個(gè)字符串或者是一個(gè)元素This could be a string or could also be a tuple of suffixes to look for.
  • start -- 字符串中的開始位置。
  • end -- 字符中結(jié)束位置。

返回值

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

實(shí)例

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

#!/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);

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

True
True
True
False
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)