怎么统计Python list的结果出现次数
时间: 2024-03-20 08:45:19 浏览: 65
Python统计单词出现的次数
5星 · 资源好评率100%
可以使用 Python 的 Counter() 函数来统计 list 中每个元素出现的次数。例如:
```python
from collections import Counter
my_list = [1, 2, 2, 3, 3, 4, 5, 5]
count = Counter(my_list)
print(count)
```
输出结果为:Counter({2: 2, 3: 2, 5: 2, 1: 1, 4: 1})
在上面的代码中,首先导入 collections 模块中的 Counter 类,然后使用 Counter() 函数对列表进行处理,得到一个字典,其中键为列表中的元素,值为该元素在列表中出现的次数。
阅读全文