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

中文词频统计

时间:2017-09-29 14:00:07      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:jieba   天空   col   reverse   blog   range   list   ever   import   

import jieba
fr=open(bin.txt,r,encoding=utf-8)
ma=fr.read()
bing=jieba.cut(ma)
bing=list(bing)
exc={,,,.,--,,,,,,,,,,,,,,,,,,,,,,,,--,,,}
words=set(bing)
words=words-exc
di={}
for i in words:
    if len(i)==1:
        continue
    else:
        di[i]=bing.count(i)+1
wc=list(di.items())
wc.sort(key=lambda x:x[1],reverse=True)
print(wc)
for i in range(20):
    print(wc[i])
f.close()



技术分享

《西游记》里孙悟空大闹蟠桃盛宴,大闹天空,玉帝迫于无奈只能请西天如来佛祖前来营救。

 

 

中文词频统计

标签:jieba   天空   col   reverse   blog   range   list   ever   import   

原文地址:http://www.cnblogs.com/154145kj/p/7610612.html

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