利用python处理文档中各字段出现的次数并排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用python处理文档中各字段出现的次数并排序相关的知识,希望对你有一定的参考价值。

1 import string
2 path = waldnn
3 with open(path,r) as text:
4     words = [raw_word.strip(string.punctuation).lower() for raw_word in text.read().split()]
5     words_index = set(words)
6     counts_dict = {index:words.count(index) for index in words_index}
7 
8 for word in sorted(counts_dict,key=lambda x: counts_dict[x],reverse=True):
9     print({} -- {} times.format(word,counts_dict[word]))

 

以上是关于利用python处理文档中各字段出现的次数并排序的主要内容,如果未能解决你的问题,请参考以下文章

python实例:利用jieba库,分析统计金庸名著《倚天屠龙记》中人物名出现次数并排序

华为OD机试 - 字母计数(Python)| 真题+思路+代码

python读取一个英文文件,并记录每个单词出现的次数,降序输出

如何用python统计一个txt文件中各个单词出现的次数

js查找数组中出现次数最多的元素

Python3红楼梦人名出现次数统计分析