“Python am häufigsten in der Liste” Code-Antworten

Python finden am häufigsten Element

from collections import Counter

a = [1936, 2401, 2916, 4761, 9216, 9216, 9604, 9801] 

c = Counter(a)

print(c.most_common(1)) # the one most common element... 2 would mean the 2 most common
[(9216, 2)] # a set containing the element, and it's count in 'a'
Arno Deceuninck

Python am häufigsten in der Liste

def most_common(lst):
    return max(set(lst), key=lst.count)
Mainhattencalling

Ähnliche Antworten wie “Python am häufigsten in der Liste”

Fragen ähnlich wie “Python am häufigsten in der Liste”

Weitere verwandte Antworten zu “Python am häufigsten in der Liste” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen