Program to find most used word in text file using Python

  1. count = 0;  
  2. word = "";  
  3. maxCount = 0;  
  4. words = [];  
  5. file = open("data.txt""r")  
  6. for line in file:  
  7.     string = line.lower().replace(',','').replace('.','').split(" ")
  8.     for s in string:  
  9.         words.append(s)  
  10. for i in range(0, len(words)):  
  11.     count = 1
  12.     for j in range(i+1, len(words)):  
  13.         if(words[i] == words[j]):  
  14.             count = count + 1
  15.     if(count > maxCount):  
  16.         maxCount = count  
  17.         word = words[i]  
  18. print("Most repeated word: " + word)  
  19. file.close()  

Explanation of program here>>>