描述
如果字符串以指定的后缀结尾,则返回 True,否则返回 False 可选地限制与给定索引开始和结束的匹配。
用法
str.endswith(suffix[, start[, end]])
参数
suffix- 这可能是一个字符串,也可能是一个要查找的后缀元组。
start- 切片从这里开始。
end- 切片到此结束。
返回值
如果字符串以指定的后缀结尾,则为 TRUE,否则为 FALSE。
示例
#!/usr/bin/python3
Str = 'this is string example....wow!!!'
suffix = '!!'
print (Str.endswith(suffix))
print (Str.endswith(suffix,20))
suffix = 'exam'
print (Str.endswith(suffix))
print (Str.endswith(suffix, 0, 19))
结果
True True False True
相关用法
- Python 3 String encode()用法及代码示例
- Python 3 String expandtabs()用法及代码示例
- Python 3 String isupper()用法及代码示例
- Python 3 String decode()用法及代码示例
- Python 3 String maketrans()用法及代码示例
- Python 3 String find()用法及代码示例
- Python 3 String isspace()用法及代码示例
- Python 3 String upper()用法及代码示例
- Python 3 String rstrip()用法及代码示例
- Python 3 String lower()用法及代码示例
- Python 3 String zfill()用法及代码示例
- Python 3 String index()用法及代码示例
- Python 3 String replace()用法及代码示例
- Python 3 String split()用法及代码示例
- Python 3 String strip()用法及代码示例
- Python 3 String startswith()用法及代码示例
- Python 3 String isalnum()用法及代码示例
- Python 3 String join()用法及代码示例
- Python 3 String lstrip()用法及代码示例
- Python 3 String isdecimal()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - String endswith() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。