Python查找列表中出现次数最多的元素
时间: 2023-05-17 18:05:08 浏览: 348
Python找出列表中出现次数最多的元素三种方式
可以使用Python内置的collections模块中的Counter函数来实现,代码如下:
from collections import Counter
lst = [1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 1, 2, 1]
count = Counter(lst)
most_common = count.most_common(1)
print(most_common[0][0])
输出结果为:1
阅读全文