python中計算次數的方法,在python中可以使用count()方法計算次數,該函數主要用于統計字符串里某個字符出現的次數,可選參數為在字符串搜索的開始與結束位置。
具體內容如下:
count()語法
str.count(sub, start= 0,end=len(string))
參數說明:
sub:搜索的子字符串
start:字符串開始搜索的位置,默認為第一個字符,第一個字符索引值為0。
end:字符串中結束搜索的位置,字符中第一個字符的索引為0,默認為字符串的最后一個位置。
示例:
#!/usr/bin/python
#www.neiyidaogou.com
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) : 1