Notices
 

Most Common words in a text file

For page specific messages
For page author info

Python Code...

name = input('Enter file:')
handle = open(name, 'r')
counts = dict()
for line in handle:
     words = line.split()
     for word in words:
         counts[word] = counts.get(word, 0) + 1

bigcount = None
bigword = None
for word, count in list(counts.items()):
     if bigcount is None or count > bigcount:
         bigword = word
        bigcount = count

print(bigword, bigcount)

 
This code really helps me a lot  for finding most common words in a text file.
 
CoolWink

Exclude node summary : 

n
 
X