首页 > 其他 > 详细

综合练习:词频统计

时间:2018-03-26 12:21:12      阅读:193      评论:0      收藏:0      [点我收藏+]
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)

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

综合练习:词频统计

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!