首页 > 编程语言 > 详细

python jieba 库分词结合Wordcloud词云统计

时间:2019-04-03 23:07:00      阅读:250      评论:0      收藏:0      [点我收藏+]
def getText():
    txt=open("D:\\Users\\Benny\\pingfan.txt","r").read()
    txt=txt.lower()
    for ch in ‘!"#$%^&*()-+{}:"><?~‘:
        txt=txt.replace(ch," ")
    return txt
hamletTxt=getText()
words=hamletTxt.split()
counts={}
for words in words:
    counts[word]=counts.get(word,0)+1
items.sort(key=lambda x:x[1],reverse=Ture)
for i in range(10):
    word,count=items[i]
    print("{0:<10}{1:>5}".format(word,count))

  

python jieba 库分词结合Wordcloud词云统计

原文:https://www.cnblogs.com/shuxincheng/p/10651937.html

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