str字符串 endswith( ) 方法
Posted change06
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了str字符串 endswith( ) 方法相关的知识,希望对你有一定的参考价值。
描述
endswith() 方法用于判断字符串是否以指定后缀结尾,如果以指定后缀结尾返回True,否则返回False。可选参数"start"与"end"为检索字符串的开始与结束位置。
语法
endswith()方法语法:
str.endswith(suffix[, start[, end]])
参数
- suffix -- 该参数可以是一个字符串或者是一个元素。
- start -- 字符串中的开始位置。
- end -- 字符中结束位置。
返回值
如果字符串含有指定的后缀返回True,否则返回False。
实例
以下实例展示了endswith()方法的实例:
#!/usr/bin/python3 Str=‘Runoob example....wow!!!‘ suffix=‘!!‘ print (Str.endswith(suffix)) print (Str.endswith(suffix,20)) suffix=‘run‘ print (Str.endswith(suffix)) print (Str.endswith(suffix, 0, 19))
以上实例输出结果如下:
True
True
False
False
以上是关于str字符串 endswith( ) 方法的主要内容,如果未能解决你的问题,请参考以下文章
python基础教程:startswith()和endswith()的用法
Pandas处理dataframe的文本数据列:使用str属性获取数据列的字符串方法类endswith函数筛选dataframe指定数据列的结束内容为指定内容的所有数据行