码迷,mamicode.com
首页 > 其他好文 > 详细

综合练习:词频统计

时间:2018-03-26 12:35:50      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:color   gpo   只读   col   open   log   item   rdl   rev   

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)

技术分享图片技术分享图片技术分享图片技术分享图片

综合练习:词频统计

标签:color   gpo   只读   col   open   log   item   rdl   rev   

原文地址:https://www.cnblogs.com/cyn-kk/p/8649852.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!