py计算列表my_list = [1, 2,2, 3, 3, 3]中每个元素出现的次数
时间: 2023-10-16 18:09:21 浏览: 85
Python找出列表中出现次数最多的元素三种方式
您好!对于您的问题,可以使用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返回的是一个字典,字典的键是列表中不同的元素,值是该元素出现的次数。
阅读全文