位置:首頁 > 腳本語言 > Python教學 > Python count()方法

Python count()方法

count()方法返回出現在範圍內串子數range [start, end]。可選參數的start和end都解釋為片符號。

語法

以下是count()方法的語法:

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

參數

  • sub -- 這是子串用來進行搜索。

  • start -- 搜索從這一索引。第一個字符從0開始的索引。默認情況下搜索從0開始的索引。

  • end -- 搜索從該索引結束。第一個字符從0開始的索引。默認情況下搜索結束的最後一個索引。

返回值

此方法返回集中在長度寬度的字符串。

例子

下麵的例子顯示了count()方法的使用。

#!/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)

當我們運行上麵的程序,它會產生以下結果:

str.count(sub, 4, 40) :  2
str.count(sub, 4, 40) :  1