轻松上手,快乐学习!

Python 字符串 endswith() 方法


实例

检查字符串是否以标点符号(.)结尾:
txt = "Hello, welcome to my world."

x = txt.endswith(".")

print(x)
运行实例 »

定义和用法

endswith()如果字符串以指定值结束,则该方法返回True,否则返回False。

语法

string.endswith(value, start, end)

参数值

 
参数 描述
value 必须项。检查结尾的字符串
start 可选项。指定位置开始检查
end 可选项。指定位置开始结束

更多实例

实例

检查字符串是否以“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)
运行实例 »