1. 程式人生 > >python count()

python count()

post 法語 error clas gpo typeerror 開始 統計 python

count()

描述

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

語法

count()方法語法:

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

參數

  • sub -- 搜索的子字符串
  • start -- 字符串開始搜索的位置。默認為第一個字符,第一個字符索引值為0。
  • end -- 字符串中結束搜索的位置。字符中第一個字符的索引為 0。默認為字符串的最後一個位置。
>>> a = [mike,mike,ben,tom,jack]
>>>
>>> a.count()
Traceback (most recent call last):
  File 
"<stdin>", line 1, in <module> TypeError: count() takes exactly one argument (0 given) >>> >>> a.count(mike) 2 >>> a.count(tom) 1

python count()