猫史档案馆


出现频率最高单词统计

用户:少幽科技少幽科技查看:4 回复:2 评论:4 创建时间:2020-03-31T20:55:27


import string
from collections import Counter
show = 3
outtab = ' '*len(string.punctuation)
intab = string.punctuation
text = '''text here'''
text = text.lower()
text = text.translate(str.maketrans(intab,outtab))
words = text.split()
count = Counter(words)
top = count.most_common(show)
print('\n'.join([f'word:"{word}", times:{time}' for word,time in top]))


回复

上一页1 页 / 共 1下一页
克雷寄寄克雷寄寄

你出现啦!

点赞0


评论


克雷寄寄克雷寄寄

怕你看不出我是谁了

我是zky

记得吗

点赞0


评论