python字符串的endswith方法判断字符串是否以某个字符串结尾,在判断文件后缀时经常用到,start 和 end参数可以指定判断范围,实践中很少设置这两个参数。
方法定义如下
def endswith(self, suffix, start=None, end=None)
示例代码如下
word = 'hello world'
print(word.endswith('world')) # True
尽管可以在方法调用时指定开始索引和结束索引,但通常实践中不会用到,下面的例子向你展示如何使用start和end参数
word = 'hello world'
print(word.endswith('world', 0, -2)) # False
print(word.endswith('worl', 0, -1)) # True
QQ交流群: 211426309