可以使用collections模塊中的Counter類來統計列表中元素的出現次數,然后找到出現次數最多的元素。
下面是一個示例代碼:
from collections import Counter
my_list = [1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5]
counter = Counter(my_list)
# 找到出現次數最多的元素及其出現次數
most_common = counter.most_common(1)
most_common_element, count = most_common[0]
print("出現次數最多的元素是:", most_common_element)
print("出現次數:", count)
輸出結果:
出現次數最多的元素是: 5
出現次數: 4
在示例代碼中,我們先使用Counter類創建一個counter對象,然后使用most_common()方法找到出現次數最多的元素及其出現次數。最后,我們通過打印輸出結果。