Python 3 - 字符串 endswith() 方法

  • 描述

    如果字符串以指定的后缀结尾,它返回 True ,否则返回 False 可选地限制与给定索引startend的匹配。
  • 句法

    
    str.endswith(suffix[, start[, end]])
    
  • 参数

    • suffix− 这可以是一个字符串,也可以是一个要查找的后缀元组。
    • start− 切片从这里开始。
    • end− 切片到此结束。
  • 返回值

    如果字符串以指定的后缀结尾,则为 TRUE,否则为 FALSE。
  • 例子

    
    #!/usr/bin/python3
    Str = 'this is string example....wow!!!'
    suffix = '!!'
    print (Str.endswith(suffix))
    print (Str.endswith(suffix,20))
    suffix = 'exam'
    print (Str.endswith(suffix))
    print (Str.endswith(suffix, 0, 19))
    
  • 结果

    
    True
    True
    False
    True