The most common element in a list is the element that occurs most frequently. For example, the most common element of [1, 1, 2] is 1.
Solution for How to find the most common element in a list in Python : You can use max() to find the most common element in a list Call max(iterable, key) with a list as iterable and list.count as key to find the most common element of the list.