在python中怎么找出列表中出现次数最多的数
时间: 2023-10-16 22:10:43 浏览: 109
Python找出列表中出现次数最多的元素
在Python中,可以使用collections模块中的Counter函数来统计列表中每个元素出现的次数,并使用most_common()函数返回出现次数最多的元素和它的出现次数。具体实现如下:
```python
from collections import Counter
my_list = [1, 2, 3, 4, 5, 1, 2, 3, 1, 2, 1]
counter = Counter(my_list)
most_common = counter.most_common(1)
print(most_common[0][0])
```
输出结果为:
```
1
```
表示列表中出现次数最多的数是1。
阅读全文