您好,登錄后才能下訂單哦!
python中count函數(shù)的用法
Python count()方法
描述
Python count() 方法用于統(tǒng)計(jì)字符串里某個(gè)字符出現(xiàn)的次數(shù)??蛇x參數(shù)為在字符串搜索的開(kāi)始與結(jié)束位置。
count()方法語(yǔ)法:
str.count(sub, start= 0,end=len(string))
參數(shù)
返回值
該方法返回子字符串在字符串中出現(xiàn)的次數(shù)。
以下實(shí)例展示了count()方法的實(shí)例:
實(shí)例(Python 2.0+)
#!/usr/bin/python str = "this is string example....wow!!!"; sub = "i"; print "str.count(sub, 4, 40) : ", str.count(sub, 4, 40) sub = "wow"; print "str.count(sub) : ", str.count(sub)
以上實(shí)例輸出結(jié)果如下:
str.count(sub, 4, 40) : 2 str.count(sub) : 1
以上就是python中count函數(shù)的用法的詳細(xì)內(nèi)容,更多內(nèi)容可以參閱億速云相關(guān)欄目。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。