python统计列表出现次数次数最多的元素
时间: 2023-05-29 08:03:46 浏览: 530
序列中出现次数最多的元素-华为云大数据中台架构分享
可以使用collections模块中的Counter类来统计列表中元素出现的次数,然后使用most_common方法找出出现次数最多的元素。
例如:
```python
from collections import Counter
my_list = [1, 2, 3, 4, 1, 2, 1, 5, 6, 5, 5]
count_dict = Counter(my_list)
most_common = count_dict.most_common(1)
print(most_common[0][0]) # 输出出现次数最多的元素
```
输出结果为:
```
1
```
说明列表中出现次数最多的元素是1。
阅读全文