Python3 list.count()方法

2019-10-16 23:10:34
count() 方法返回 obj 物件出現在列表的數量。

語法

以下是 count() 方法的語法-
list.count(obj)

引數

  • obj -- 這是在列表中要被計數的物件。

返回值

這個方法返回obj物件出現在列表計數。

物件

下面的範例顯示 count() 方法的使用。
#!/usr/bin/python3
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