collection counter most common values only code example
Example 1: counter method in python
from collections import Counter
list1 = ['x','y','z','x','x','x','y','z']
print(Counter(list1))
Example 2: count values in list usiing counter
from collections import Counter