• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
August 09, 2022 |17.5K Views
Python program to find most frequent element in a list
Description
Discussion

In this video, we will write a python program to find the most frequent element in a list.

The discussed methods are as below:
1. Using list.count()
2. Using statistics module in python

Using list.count(): In this method, inside for loop, for every iteration, we use list.count() method to find the number of occurrences of an element in the list. We store this count and the element for every iteration, and update whenever the count is greater than the count for the previous element in the loop.

Using statistics module in python: In this method, we can find the most frequent element in a list using mode() function from statistics module. We need to import the statistics module before we can use the mode() function.

Python | Find most frequent element in a list:
https://www.geeksforgeeks.org/python-find-most-frequent-element-in-a-list/