Python startswith()方法
Python startswith()方法
Python startswith() 方法用于檢查字符串是否是以指定子字符串開頭,如果是則返回 True,否則返回 False。如果參數(shù) beg 和 end 指定值,則在指定范圍內(nèi)檢查。
語(yǔ)法
startswith()方法語(yǔ)法:
str.startswith(str, beg=0,end=len(string));
參數(shù)
- str -- 檢測(cè)的字符串。
- strbeg -- 可選參數(shù)用于設(shè)置字符串檢測(cè)的起始位置。
- strend -- 可選參數(shù)用于設(shè)置字符串檢測(cè)的結(jié)束位置。
返回值
如果檢測(cè)到字符串則返回True,否則返回False。
實(shí)例
以下實(shí)例展示了startswith()函數(shù)的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.startswith( 'this' ); print str.startswith( 'is', 2, 4 ); print str.startswith( 'this', 2, 4 );
以上實(shí)例輸出結(jié)果如下:
True True False
相關(guān)文章
- Python 教程
- Python 簡(jiǎn)介
- Python 變量類型
- Python GUI編程 Tkinter
- Python 搜索算法
- Python3 運(yùn)算符
- Python3 字符串(String)
- Python3 作用域
- Python MongoDB 數(shù)據(jù)庫(kù)連接 - PyMongo 驅(qū)動(dòng)
- Python File readlines() 方法
- Python File seek() 方法
- Python File truncate() 方法
- Python os.closerange() 方法
- Python os.link() 方法
- Python os.stat() 方法
- Python os.stat_float_times() 方法
- Python max()方法
- Python splitlines()方法
- Python title()方法
- Python time mktime()方法