import jieba
txt = open("in.txt", "r", encoding='utf-8').read()
words  = jieba.lcut(txt)
counts = {}
for word in words:
    if len(word) == 1:
        continue
    else:
        counts[word] = counts.get(word,0) + 1
items = list(counts.items())
items.sort(key=lambda x:x[1], reverse=True)
for i in range(2000)://统计数量
    word, count = items[i]
    #print ("{0:<10}{1:>5}".format(word, count))
    t=open('count.txt', 'a',encoding='utf-8')
    t.write("{0:<10}{1:>5}".format(word, count)+"\n")

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐