1. 程式人生 > >【Python】Python startswith, endswith

【Python】Python startswith, endswith

處理字串時,startswith, endswith 2個函式比較方便,記下來他的基本用法。

描述

Python startswith() 方法用於檢查字串是否是以指定子字串開頭,如果是則返回 True,否則返回 False。如果引數 beg 和 end 指定值,則在指定範圍內檢查。

語法

startswith()方法語法:

str.startswith(str, beg=0,end=len(string));

引數

  • str -- 檢測的字串。
  • strbeg -- 可選引數用於設定字串檢測的起始位置。
  • strend -- 可選引數用於設定字串檢測的結束位置。

返回值

如果檢測到字串則返回True,否則返回False。

例項

>>> filePath = r'C:\adb\tools\ddms.bat'
>>> filePath.endswith('.bat')
True