how to find frequency of a occurrence of word in python code example
Example: python count the frequency of words in a list
from collections import Counter
list1=['apple','egg','apple','banana','egg','apple']
counts = Counter(list1)
print(counts)
# Counter({'apple': 3, 'egg': 2, 'banana': 1})