python str.endswith

weixin_34127717發表於2018-03-16

判斷字串是否以指定字尾結尾,如果以指定字尾結尾返回True,否則返回False

  • suffix -- 該引數可以是一個字串或者是一個元素。
  • start -- 字串中的開始位置。
  • end -- 字元中結束位置。


endswith(...)

    S.endswith(suffix[, start[, end]]) -> bool

    

    Return True if S ends with the specified suffix, False otherwise.

    With optional start, test S beginning at that position.

    With optional end, stop comparing S at that position.

    suffix can also be a tuple of strings to try.

相關文章