frequency of each element in list python code example
Example: find frequency of numbers in list python
from collections import Counter
def frequency_table(n):
table = Counter(n)
print('Number\tFrequency')
for number in table.most_common() :
print('{0}\t{1}'.format(number[0], number[1]))
# src : Doing Math With Python