昌鑫号

python(python培训机构哪家好)

python, Endswith是python下的一个方法,可以用来判断一个字符串是否以指定后缀结尾,如果以指定后缀结尾,则返回True,否则返回False。

可以选择参数start和end作为检索字符串的开始和结束位置。

endswith()方法的语法格式是:

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

python培训机构哪家好

参数描述:

后缀-这个参数可以是一个字符串或者一个元素。

Start -字符串中的起始位置。

End -字符的结束位置。

返回值:

如果字符串包含指定的后缀,则返回True,否则返回False。

python培训机构哪家好

参考示例:

endswith()方法的使用,具体代码是:

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

输出结果:

True

True

True

False

python,以上就是本文为您收集整理的python最新内容,希望能帮到您!更多相关内容欢迎关注。

      
上一篇