阅读背景:

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

来源:互联网 
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))
def getText():
    txt=open("D:\Users\Benn



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: