Answers for "find most common number in list python"

3

python find most occuring 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'
Posted by: Guest on July-07-2020
0

how to get the most common number in python

>>> from statistics import mode
>>> mode((1, 2, 4, 4, 5, 4, 4, 2, 3, 8, 4, 4, 4))
4
Posted by: Guest on December-10-2020
-1

get most common element in list python

from collections import Counter

listOfArtists = [
 'Linkin Park',
 'Lil Peep',
 'Lil Peep',
 'Cold Hart',
 'Team Astro',
 'Tom Odell',
 'Bazzi',
 'The Weeknd',
 'Juice WRLD',
 'The Weeknd',
 'Foster The People',
 'Linkin Park',
 'Linkin Park',
 'Lil Peep',] 

amount = 4
print(Counter(listOfArtists).most_common(amount)) # amount = elements returned 

#output: [('Linkin Park', 3), ('Lil Peep', 3), ('The Weeknd', 2), ('Cold Hart', 1)]
Posted by: Guest on October-13-2021

Code answers related to "find most common number in list python"

Python Answers by Framework

Browse Popular Code Answers by Language