程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> Python中處理字符串之endswith()方法的使用簡介

Python中處理字符串之endswith()方法的使用簡介

編輯:更多關於編程

       這篇文章主要介紹了Python中處理字符串之endswith()方法的使用,是Python入門中的基礎知識,需要的朋友可以參考下

      endswith()方法返回true,如果字符串以指定後綴結尾,否則返回(False可選限制的匹配從給定的索引開始和結束)。

      語法

      以下是endswith()方法的語法:

      ?

    1 str.endswith(suffix[, start[, end]])

      參數

      suffix -- 這可能是一個字符串或者是元組用於查找後綴。

      start -- 切片從此開始

      end -- 切片到此為止

      返回值

      如果字符串以指定的後綴結束此方法返回true,否則返回false。

      例子

      下面的例子顯示了endswith()方法的使用。

      ?

    1 2 3 4 5 6 7 8 9 10 11 #!/usr/bin/python   str = "this is string example....wow!!!";   suffix = "wow!!!"; print str.endswith(suffix); print str.endswith(suffix,20);   suffix = "is"; print str.endswith(suffix, 2, 4); print str.endswith(suffix, 2, 6);

      當我們運行上面的程序,它會產生以下結果:

      ?

    1 2 3 4 True True True False
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved