Answers for "count the frequency of words of a txt file .plot a histogram showing there frequency in decreasing order."

1

count the frequency of words in a file

from collections import Counter
def word_count(fname):
        with open(fname) as f:
                return Counter(f.read().split())

print("Number of words in the file :",word_count("test.txt"))
Posted by: Guest on December-03-2020

Code answers related to "count the frequency of words of a txt file .plot a histogram showing there frequency in decreasing order."

Python Answers by Framework

Browse Popular Code Answers by Language