Python count()方法

Python 字串 Python 字串


描述

Python count() 方法用於統計字串裏某個字元出現的次數。可選參數為在字串搜索的開始與結束位置。

語法

count()方法語法:

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

參數

  • sub -- 搜索的子字串
  • start -- 字串開始搜索的位置。默認為第一個字元,第一個字元索引值為0。
  • end -- 字串中結束搜索的位置。字元中第一個字元的索引為 0。默認為字串的最後一個位置。

返回值

該方法返回子字串在字串中出現的次數。

實例

以下實例展示了count()方法的實例:

實例(Python 2.0+)

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

Python 字串 Python 字串