How to find the element with maximum occurrences in a list with Python

2 Answers

0 votes
lst = [1, 3, 1, 1, 4, 4, 5, 5, 4, 2, 2, 2, 3, 3, 3]
 
print(max(lst, key = lst.count))
  
     
     
     
'''
run:
     
3
   
'''

 



answered Feb 20, 2023 by avibootz
0 votes
from collections import Counter
 
lst = [1, 3, 1, 1, 4, 4, 5, 5, 4, 2, 2, 2, 3, 3, 3]
 
print(Counter(lst).most_common()[0][0])
  
     
     
     
'''
run:
     
3
   
'''

 



answered Feb 20, 2023 by avibootz
...