用pyrhon编写程序,输入一个包含若干个元素的列表输出其中出现次数最多的元素。输入格式[1,2,2,4,4,4,],输出格式:4
时间: 2024-05-03 11:21:20 浏览: 74
python 求一个列表中所有元素的乘积实例
5星 · 资源好评率100%
可以使用Python中的collections模块的Counter类来实现:
```python
from collections import Counter
lst = [1, 2, 2, 4, 4, 4]
counter = Counter(lst) # 统计元素出现次数
most_common = counter.most_common(1) # 找出出现次数最多的元素
print(most_common[0][0]) # 输出该元素
```
输出结果为:4
阅读全文