例如:
检查字符串是否以标点符号 (.)结尾:
txt = "Hello, welcome to my world." x = txt.endswith(".") print(x)
1、定义和用法
如果字符串以指定值结尾,则endswith()
方法返回True,否则返回False。
2、调用语法
string.endswith(value, start, end)
3、参数说明
参数 | 描述 |
value | 必需的参数,检查字符串是否以该值结尾 |
start | 可选的。一个整数,指定从哪个位置开始搜索 |
end | 可选的。 一个整数,指定结束搜索的位置 |
4、使用示例
例如:
检查字符串是否以"my world."结尾:
txt = "Hello, welcome to my world." x = txt.endswith("my world.") print(x)
例如:
检查位置5到11是否以"my world."结尾:
txt = "Hello, welcome to my world." x = txt.endswith("my world.", 5, 11) print(x)