Answers for "python program to count the frequency of each word in a sentence"

0

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})
Posted by: Guest on February-25-2021

Code answers related to "python program to count the frequency of each word in a sentence"

Python Answers by Framework

Browse Popular Code Answers by Language