Q:

Write a Python program to get the frequency of the elements in a list

0

Write a Python program to get the frequency of the elements in a list. 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now