Python统计一个列表中每个元素出现的次数
时间: 2024-01-09 07:03:44 浏览: 105
Python统计单词出现的次数
可以使用 Python 的 collections 模块中的 Counter() 函数实现。示例代码如下:
```python
from collections import Counter
lst = ['a', 'b', 'c', 'a', 'b', 'a']
counts = Counter(lst)
print(counts)
```
输出:
```
Counter({'a': 3, 'b': 2, 'c': 1})
```
以上是回答您的问题,如果您有其他问题,欢迎继续提问。
阅读全文