endswith()方法

Posted xiaohei001

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了endswith()方法相关的知识,希望对你有一定的参考价值。

endswith()方法

描述

endswith() 方法用于判断字符串是否以指定后缀结尾,如果以指定后缀结尾返回True,否则返回False。可选参数"start"与"end"为检索字符串的开始与结束位置。

语法

endswith()方法语法:

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

参数

  • suffix -- 该参数可以是一个字符串或者是一个元素。

  • start -- 字符串中的开始位置,0 为第一个字符索引值。

  • end -- 字符中结束位置,1 为第一个字符索引值。

返回值

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

实例

以下实例展示了endswith()方法的实例:

str1 = Runoob example....wow!!!
sufix = "!!"
print(str1.endswith(sufix))
print(str1.endswith(sufix, 20))

sufix = "run"
print(str1.endswith(sufix))
print(str1.endswith(sufix, 0, 19))

# 结果为
# True
# True
# False
# False
print(01234.endswith(234, 0, 4))
>>> False

print(01234.endswith(234, 0, 5))
>>> True

 

以上是关于endswith()方法的主要内容,如果未能解决你的问题,请参考以下文章

Python endswith()方法

str字符串 endswith( ) 方法

Flask源码解析:字符串方法endswith与os.path.splittext()

需要帮助 'string.endswith(string)' 的最佳重载方法匹配有一些无效参数

String类的endsWith()方法

如何通过 getName().endsWith() 使用 FileFilter 的方法参考