Assignment 3 Part 1 (submitted by Kevin on Feb 17, 02:28)

Beautiful Code
Ka-Ping Yee

AUTHORS:   Adam   Calvin   Chris   David   Derek   Hunter   Jacob   Jason   Jun   Karl   Kevin   Michael   Morgan   Nadia   Nerissa   Omair   Peter   Peterson   Ping   Richard   Rosie   Scott   Thanh   Varun

Download this file.

COMMENTS

Feb 17, 16:32 - Kevin (line 10): misspelleddict.get instead of misspelledlist

Feb 17, 16:32 - Kevin (line 14): misspelleddict.get instead of misspelleddict

Please log in if you would like to add comments.

   

  1 #updated 02/17/03 using Peter's module
  2 #assumptions: dictionary is opened in the mod
  3 import speling
  4 
  5 #check takes in a file and outputs a list of misspelled words
  6 misspelledlist = speling.check("input.txt")
  7 misspelledlist.sort()
  8 misspelleddict = {}
  9 for word in misspelledlist:
 10     misspelleddict[word] = misspelledlist(word, 0) + 1
 11 #print misspelled words in format -- word (occurances)
 12 for key in misspelleddict:
 13     print key,
 14     print ' (' + str(misspelleddict(key)) + ')'