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

Python List.count()方法

count()方法返回obj出現在列表的次數。

語法

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

list.count(obj)

參數

  • obj -- 這是在該列表被計數的對象。

返回值

此方法返回obj出現在列表的次數。

例子

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

#!/usr/bin/python

aList = [123, 'xyz', 'zara', 'abc', 123];

print "Count for 123 : ", aList.count(123);
print "Count for zara : ", aList.count('zara');

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

Count for 123 :  2
Count for zara :  1