how to use counter python 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: counter method in python
Counter({'x': 4, 'y': 2, 'z': 2})
Example 3: count values in list usiing counter
from collections import Counter