這篇文章主要介紹了Python字符串處理之count()方法的使用,是Python入門的基礎知識,需要的朋友可以參考下
count()方法返回出現在范圍內串子數range [start, end]。可選參數的start和end都解釋為片符號。
語法
以下是count()方法的語法:
?
1 str.count(sub, start= 0,end=len(string))參數
sub -- 這是子串用來進行搜索。
start -- 搜索從這一索引。第一個字符從0開始的索引。默認情況下搜索從0開始的索引。
end -- 搜索從該索引結束。第一個字符從0開始的索引。默認情況下搜索結束的最後一個索引。
返回值
此方法返回集中在長度寬度的字符串。
例子
下面的例子顯示了count()方法的使用。
?
1 2 3 4 5 6 7 8 #!/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)當我們運行上面的程序,它會產生以下結果:
?
1 2 str.count(sub, 4, 40) : 2 str.count(sub, 4, 40) : 1