2020310143011

2021/12/12 6:19:31

本文主要是介绍2020310143011,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

import jieba
c=open(r'C:\Users\孙权宏\Desktop\《西游记》白话简写版.txt')
fenci=jieba.lcut(c.read())
a=[] #列表中分词
for word in fenci:
if len(word) == 1:
continue
else:
a.append(word)
continue
count=dict.fromkeys(a)
for i in count.keys():
count[i]=0
for j in a:
if j in count.keys():
count[j]+=1
item=list(count.items())
item.sort(key=lambda x:x[1],reverse=True)
for i in range(20):
word,count=item[i]
print("{0:<5}{1:>5}".format(word,count))



这篇关于2020310143011的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程