python编写输出其中出现次数最多的元素
时间: 2023-10-31 17:05:35 浏览: 117
Python找出列表中出现次数最多的元素
可以使用Python中的Counter模块来实现统计元素出现次数的功能,具体代码如下:
```python
from collections import Counter
lst = [1, 2, 3, 4, 2, 3, 2, 1, 5]
# 统计元素出现次数
count = Counter(lst)
# 获取出现次数最多的元素及其出现次数
most_common = count.most_common(1)[0]
print("出现次数最多的元素是:{},出现次数为:{}".format(most_common[0], most_common[1]))
```
输出结果为:
```
出现次数最多的元素是:2,出现次数为:3
```
说明在列表lst中,元素2出现了3次,是出现次数最多的元素。
阅读全文