python统计单词出现次数
程序员文章站
2022-04-16 11:32:13
...
python统计单词出现次数
做单词词频统计,用字典无疑是最合适的数据类型,单词作为字典的key, 单词出现的次数作为字典的 value,很方便地就记录好了每个单词的频率,字典很像我们的电话本,每个名字关联一个电话号码。
下面是具体的实现代码,实现了从importthis.txt文件读取单词,并统计出现次数最多的5个单词。
# -*- coding:utf-8 -*- import io import re class Counter: def __init__(self, path): """ :param path: 文件路径 """ self.mapping = dict() with io.open(path, encoding="utf-8") as f: data = f.read() words = [s.lower() for s in re.findall("\w+", data)] for word in words: self.mapping[word] = self.mapping.get(word, 0) + 1 def most_common(self, n): assert n > 0, "n should be large than 0" return sorted(self.mapping.items(), key=lambda item: item[1], reverse=True)[:n] if __name__ == '__main__': most_common_5 = Counter("importthis.txt").most_common(5) for item in most_common_5: print(item)
执行效果:
('is', 10) ('better', 8) ('than', 8) ('the', 6) ('to', 5)
更多python教程,推荐学习:Python视频教程
以上就是python统计单词出现次数的详细内容,更多请关注其它相关文章!
上一篇: win7系统下的字体库在哪个文件夹中
推荐阅读
-
hadoop入门之统计单词在文件中出现的个数示例
-
python 实现返回一个列表中出现次数最多的元素方法
-
Python3实现统计单词表中每个字母出现频率的方法示例
-
Python统计列表中的重复项出现的次数的方法
-
Python实现计算字符串中出现次数最多的字符示例
-
布同 统计英文单词的个数的python代码
-
python利用多种方式来统计词频(单词个数)
-
python统计文本文件内单词数量的方法
-
经典问题(c++/python)素数、杨辉三角(金字塔型)、统计单词数、简单计算器、密码安全程度、凯撒密码加密、汉诺塔 (python课设实验实例)-- biaobiao88
-
Word查找替换功能统计指定词语的出现次数