py计算列表my_list = [1, 2,2, 3, 3, 3]中每个元素出现的次数
时间: 2023-10-16 10:09:21 浏览: 89
python 统计一个列表当中的每一个元素出现了多少次的方法
5星 · 资源好评率100%
您好!对于您的问题,可以使用Python内置的collections模块中的Counter方法来计算列表中每个元素出现的次数,代码如下:
``` python
from collections import Counter
my_list = [1, 2, 2, 3, 3, 3]
count_dict = Counter(my_list)
print(count_dict)
```
输出结果为:
``` python
Counter({3: 3, 2: 2, 1: 1})
```
其中,Counter返回的是一个字典,字典的键是列表中不同的元素,值是该元素出现的次数。
阅读全文