统计list中各个元素的个数
时间: 2024-01-29 18:02:01 浏览: 53
python计算列表内各元素的个数实例
可以使用Python中的collections模块中的Counter函数来实现,如下所示:
```python
from collections import Counter
lst = ['apple', 'banana', 'apple', 'pear', 'banana', 'orange']
c = Counter(lst)
for k, v in c.items():
print(k, v)
```
输出结果:
```
apple 2
banana 2
pear 1
orange 1
```
阅读全文