Python endswith() 字符串方法

  • 定义和用法

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

    检查字符串是否以标点符号(.)结尾:
    txt = "Hello, welcome to my world."
    
    x = txt.endswith(".")
    
    print(x)
    尝试一下
  • 句法

    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)
    
    尝试一下
  • 相关页面

    delattr() - 删除去一个属性
    getattr() - 获得一个属性的值
    hasattr() - 检查是否一个属性存在