Python字串count()
方法返回[start,end]
範圍內子字串sub
的出現次數。可選引數start
和end
被解釋為切片符號。
語法
以下是count()
方法的語法 -
str.count(sub, start = 0,end = len(string))
引數
0
。預設情況下,從0
索引開始搜尋。0
。 預設情況下,搜尋結束於最後一個索引。返回值
[start,end]
範圍內子字串sub
的出現次數。範例
以下範例顯示了count()
方法的用法。
#!/usr/bin/python3
str = "this is string example....wow!!!"
sub = 'i'
print ("str.count('i') : ", str.count(sub))
sub = 'exam'
print ("str.count('exam', 10, 40) : ", str.count(sub,10,40))
當執行上面的程式,它產生以下結果 -
str.count('i') : 3
str.count('exam', 4, 40) : 1