Python String endswith()方法
endswith() 方法用于判断字符串是否以指定后缀结尾,如果以指定后缀结尾返回 True,否则返回 False。可选参数 "start" 与 "end" 为检索字符串的开始与结束位置。
Python String endswith() 语法
endswith()方法语法:
str.endswith(suffix[, start[, end]])
Python String endswith() 参数
- suffix – 该参数可以是一个字符串或者是一个元素。
- start – 字符串中的开始位置。
- end – 字符中结束位置。
Python String endswith() 返回值
如果字符串含有指定的后缀返回 True,否则返回 False。
Python String endswith() 示例1
以下实例展示了endswith()方法的实例:
#!/usr/bin/python3
Str='Apidemos example....wow!!!'
suffix='!!'
print (Str.endswith(suffix))
print (Str.endswith(suffix,20))
suffix='demo'
print (Str.endswith(suffix))
print (Str.endswith(suffix, 0, 19))
输出:
Python String endswith() 示例2
endswith()方法不使用开始和结束参数。
#!/usr/bin/python3
text = "welcome to apidemos.com"
result = text.endswith('apidemos.com')
print (result)
result = text.endswith('welcome')
print (result)
result = text.endswith('welcome to apidemos.com.')
print (result)
输出: