Python有一组可以用于字符串的内置方法。Python 字符串操作常用操作,如字符串的替换、删除、截取、赋值、连接、比较、查找、分割等。本文主要介绍Python 字符串 endswith() 方法

Python 字符串方法

例如:

检查字符串是否以标点符号 (.)结尾:

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)

Python 字符串方法

推荐文档

相关文档

大家感兴趣的内容

随机列表