Python3 List count()方法
描述
count() 方法用于统计某个元素在列表中出现的次数。
语法
count()方法语法:
list.count(obj)
参数
- obj -- 列表中统计的对象。
返回值
返回元素在列表中出现的次数。
以下实例展示了 count()函数的使用方法:
实例代码
#!/usr/bin/python3
aList = [123, 'Google', 'Haodaima', 'Taobao', 123];
print ("123 元素个数 : ", aList.count(123))
print ("Haodaima 元素个数 : ", aList.count('Haodaima'))
aList = [123, 'Google', 'Haodaima', 'Taobao', 123];
print ("123 元素个数 : ", aList.count(123))
print ("Haodaima 元素个数 : ", aList.count('Haodaima'))
以上实例输出结果如下:
123 元素个数 : 2 Haodaima 元素个数 : 1