jieba
#jieba文本分析
import jieba
txt = open("C:/Users/86136/Documents/python文件测试/test.txt","rt",encoding="utf-8")
words=jieba.lcut(txt.read())
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(20):
    word,count = items[i]
    print("{0:<10}{1:>5}".format(word,count))
txt.close()
相关推荐
  kikaylee    2020-07-05  
   zooozx    2020-06-27  
   xiaocao0    2020-06-25  
   pySVNA    2020-06-14  
   fkyyly    2020-05-31  
   ustbclearwang    2020-05-09  
   cqulun    2020-04-19  
   chongtianfeiyu    2020-04-10  
   fkyyly    2020-04-07  
   chouliqingke    2020-04-07  
   fkyyly    2020-03-28  
   cqulun    2020-02-13  
   cqulun    2020-02-10  
   laityc    2020-02-10  
   wordmhg    2020-02-09  
   小发猫    2020-02-02  
   fkyyly    2020-01-28  
 