输出列表里面数量最多的元素
时间: 2023-06-12 21:07:12 浏览: 79
Python找出列表中出现次数最多的元素
可以使用 Python 中的 Counter 对象来实现。首先导入 Counter 对象,然后使用它来统计列表中每个元素出现的次数,最后返回出现次数最多的元素即可。
示例代码如下:
```python
from collections import Counter
def most_common(lst):
data = Counter(lst)
return max(lst, key=data.get)
# 示例
lst = [1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5]
print(most_common(lst)) # 输出 5
```
在这个示例中,列表中出现次数最多的元素是 5,因此最后输出结果为 5。
阅读全文