在本教程中,我们将借助示例了解 Python String endswith() 方法。
如果字符串以指定的后缀结尾,endswith()
方法将返回 True
。如果不是,则返回 False
。
示例
message = 'Python is fun'
# check if the message ends with fun
print(message.endswith('fun'))
# Output: True
用法:
用法:
str.endswith(suffix[, start[, end]])
参数:
endswith()
采用三个参数:
- suffix- 要检查的后缀字符串或元组
- start(可选) - 起始位置后缀将在字符串中进行检查。
- end(可选) - 结束位置后缀将在字符串中进行检查。
返回:
endswith()
方法返回一个布尔值。
- 如果字符串以指定的后缀结尾,则返回
True
。 - 如果字符串不以指定的后缀结尾,则返回
False
。
示例 1:endswith() 没有 start 和 end 参数
text = "Python is easy to learn."
result = text.endswith('to learn')
# returns False
print(result)
result = text.endswith('to learn.')
# returns True
print(result)
result = text.endswith('Python is easy to learn.')
# returns True
print(result)
输出
False True True
示例 2:endswith() 带有 start 和 end 参数
text = "Python programming is easy to learn."
# start parameter: 7
# "programming is easy to learn." string is searched
result = text.endswith('learn.', 7)
print(result)
# Both start and end is provided
# start: 7, end: 26
# "programming is easy" string is searched
result = text.endswith('is', 7, 26)
# Returns False
print(result)
result = text.endswith('easy', 7, 26)
# returns True
print(result)
输出
True False True
将元组传递给endswith()
可以将元组后缀传递给 Python 中的 endswith()
方法。
如果字符串以元组的任何项目结尾,则 endswith()
返回 True
。如果不是,则返回False
示例 3:endswith() 带元组后缀
text = "programming is easy"
result = text.endswith(('programming', 'python'))
# prints False
print(result)
result = text.endswith(('python', 'easy', 'java'))
#prints True
print(result)
# With start and end parameter
# 'programming is' string is checked
result = text.endswith(('is', 'an'), 0, 14)
# prints True
print(result)
输出
False True True
如果需要检查字符串是否以指定前缀开头,可以使用 startswith() method in Python 。
相关用法
- Python String endswith()用法及代码示例
- Python String encode()用法及代码示例
- Python String expandtabs()用法及代码示例
- Python String Center()用法及代码示例
- Python String decode()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String rpartition()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String translate()用法及代码示例
- Python String title()用法及代码示例
- Python String replace()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
- Python String zfill()用法及代码示例
注:本文由纯净天空筛选整理自 Python String endswith()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。