1. 程式人生 > >python學習之count()

python學習之count()

mil sharp 對象 span mic count 統計 div pre

定義:

count()方法用於統計對象中,某個字符出現的次數

語法:

str.count(sub, start= 0,end=len(string))

sub:搜索的對象

start和end:搜索的範圍,表現為索引號

說明:sub類型要和str類型一致,比如str是字節流,sub也要是字節流。

例子:

>>> s = ‘hellowe‘
>>> s.count(‘e‘,0,8)
2

python學習之count()