Ejemplo n.º 1
0
def analyzeFreq(file):
    w = Words()
    f = w.wordFreqList(WORDS_FILE, file)
    printLine()
    print "the amount of unique words is ", len(f)
    printLine()
    print f
    w.save()