统计python list 中某个元素的数量:

1,统计list中每个元素的数量,可以使用 collections 中的 Counter 函数进行统计,将列表中每个元素的值和数量构成字典返回,字典为{[list elemeter value]: [ elemeter numbers] }。例如:

from collections import Counter
L = [1,2,2,2,3,4,4]
res = Counter(L)
print(res)
#输出为:
Counter({2: 3, 4: 2, 1: 1, 3: 1})

2,统计单个元素的数量,可以直接使用list 自带的count()函数。例如:

L = [1,222,2,2,3,4,4]
res = L.count(2)
print(res)
# 输出为
2