Python/ref string endswith

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字符串endswith()方法

❮字符串方法

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

    txt = "Hello, welcome to my world."

x = txt.endswith(".")

print(x)

定义和用法

The 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是否以短语“我的世界”结尾:

    txt = "Hello, welcome to my world."

x = txt.endswith("my world.", 
    5, 11)


    print(x)

❮字符串方法