pthon如何统计列表中元素出现个数
时间: 2024-05-04 20:15:52 浏览: 87
可以使用Python中的collections库中的Counter函数来统计列表中元素出现个数。例如:
```
from collections import Counter
lst = [1, 2, 2, 3, 3, 3]
count_dict = Counter(lst)
print(count_dict) # 输出结果为:Counter({3: 3, 2: 2, 1: 1})
```
其中count_dict就是一个字典,记录了lst中每个元素出现的次数。
阅读全文