Python endswith() 方法

返回上一级

Python 字符串对象的 endswith() 方法用于判断字符串是否以指定后缀结尾

如果以指定后缀结尾返回 True,否则返回 False

可选参数 "start" 与 "end" 为检索字符串的开始与结束位置

语法

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

参数

参数 说明
suffix 可以是一个字符串或者是一个字符
start 字符串中的开始位置
end 字符中结束位置

返回值

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

范例

下面的代码使用 endswith() 方法检查字符串是否以某个子串结尾

>>> 'nice to meet you'.endswith('you')
True
>>> 'nice to meet you'.endswith('meet')
False
>>> 'nice to meet you'.endswith('meet',2,12)
True

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.