programming-examples/python/List/Python program to get the frequency of the elements in a list.py
2019-11-15 12:59:38 +01:00

5 lines
206 B
Python

import collections
my_list = [10,10,10,10,20,20,20,20,40,40,50,50,30]
print("Original List : ",my_list)
ctr = collections.Counter(my_list)
print("Frequency of the elements in the List : ",ctr)