综合练习:词频统计

Posted 104陈颖楠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了综合练习:词频统计相关的知识,希望对你有一定的参考价值。

file = open(\'song.txt\', \'r\')  # 只读打开文件
lyrics = file.read()  # 读取文件内容
file.close()  # 关闭文件资源
sep=\'\'\',.?!:\'-\'\'\'
for c in sep:
    song = song.replace(c,\'\')
wordList = song.lower().split()

wordDict={}

for w in wordList:
    wordDict[w]=wordDict.get(w,0)+1
    dictList = list(wordDict.items())
    dictList.sort(key=lambda x:x[1],reverse=True)

    for w in dictList:
        print(w)

以上是关于综合练习:词频统计的主要内容,如果未能解决你的问题,请参考以下文章

综合练习:词频统计

综合练习:词频统计

综合练习:英文词频统计

综合练习:英文词频统计

综合练习:词频统计

综合练习:英文词频统计