pyhton统计列表中不同元素的个数
时间: 2024-01-27 18:05:38 浏览: 89
python 统计列表中不同元素的数量方法
可以使用Python中的collections模块中的Counter类来统计列表中不同元素的个数。
示例代码如下:
```python
from collections import Counter
my_list = [1, 2, 3, 4, 1, 2, 2, 3, 3, 3]
counted = Counter(my_list)
print(counted)
```
输出结果为:
```
Counter({3: 4, 2: 3, 1: 2, 4: 1})
```
其中,输出结果中每个元素表示列表中出现的不同元素以及对应的个数。例如,数字3在列表中出现了4次。
阅读全文