阿萨奇 发表于 2020-5-8 17:16:40

词频统计

#e10.3Cal ThreeKingdoms
import jieba
txt=open("诊断学文件.txt",encoding='utf-8').read()
words =jieba.lcut (txt)
counts={}
for word in words :
    if len(word) == 1:
      continue
    else:
counts = counts get (word,0) +1
items= list( counts. items())
items. sort(key=lambda x:x , reverse=True )
for i in range (15):
    word ,count=items
print ("(0:<10](1:>5]"· format (word, count))
求助,为什么这个不行啊(▼皿▼#),烦死了,搞了一下午,求助大佬,

永恒的蓝色梦想 发表于 2020-5-8 17:27:31

行了就有鬼了
最后一行,点号(.)打成了间隔号(·),格式化文本应该是"{0:<10}{1:>5}"

阿萨奇 发表于 2020-5-9 09:26:46

谢谢谢谢!
页: [1]
查看完整版本: 词频统计