Python基础入门:endswith() 函数
生活随笔
收集整理的這篇文章主要介紹了
Python基础入门:endswith() 函数
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
函數:endswith()
作用:判斷字符串是否以指定字符或子字符串結尾,常用于判斷文件類型
相關函數:判斷字符串開頭 startswith()
一、函數說明
語法:
string.endswith(str, beg=[0,end=len(string)]) string[beg:end].endswith(str)參數說明:
- string: 被檢測的字符串
- str: 指定的字符或者子字符串(可以使用元組,會逐一匹配)
- beg: 設置字符串檢測的起始位置(可選,從左數起)
- end: 設置字符串檢測的結束位置(可選,從左數起)
如果存在參數 beg 和 end,則在指定范圍內檢查,否則在整個字符串中檢查
返回值:
如果檢測到字符串,則返回True,否則返回False。
解析:如果字符串string是以str結束,則返回True,否則返回False
注:會認為空字符為真
二、實例
>>> s = 'hello good boy doiido' >>> print (s.endswith('o')) True >>> print (s.endswith('ido')) True >>> print (s.endswith('do',4)) True >>> print (s.endswith('do',4,15)) False#匹配空字符集 >>> print (s.endswith('')) True #匹配元組 >>> print (s.endswith(('t','b','o'))) True常用環境:用于判斷文件類型(比如圖片,可執行文件)
''' 學習中遇到問題沒人解答?小編創建了一個Python學習交流QQ群:531509025 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' >>> f = 'pic.jpg' >>> if f.endswith(('.gif','.jpg','.png')):print ('%s is a pic' %f) else:print ('%s is not a pic' %f)總結
以上是生活随笔為你收集整理的Python基础入门:endswith() 函数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python基础入门:while 循环
- 下一篇: python基础入门:bytes 和 s