1 Star 0 Fork 0

johntitor/Word_Freq

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
word_freq 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
johntitor 提交于 2018-09-26 23:25 . second_提交
# -*- coding: utf-8 -*-
# filename: word_freq.py
# 注意:代码风格
from string import punctuation
def process_file(dst): # 读文件到缓冲区
try: # 打开文件
str = open("A_Tale_of_Two_Cities.txt", "r")
except IOError, s:
print s
return None
try: # 读文件到缓冲区
bvffer = str.read()
except:
print "Read File Error!"+bvffer
return None
str.close()
return bvffer
def process_buffer(bvffer):
if bvffer:
word_freq = {}
# 下面添加处理缓冲区 bvffer代码,统计每个单词的频率,存放在字典word_freq
for i in range(97, 123):
word_freq[chr(i)] = 0
for line in bvffer:
for character in line.lower():
if ord(character) in range(97, 123):
word_freq[character] += 1
return word_freq
def output_result(word_freq):
if word_freq:
sorted_word_freq = sorted(word_freq.items(), key=lambda v: v[1], reverse=True)
for item in sorted_word_freq[:10]: # 输出 Top 10 的单词
print item
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('dst',nargs='?')
args = parser.parse_args()
dst = args.dst
bvffer = process_file(dst)
word_freq = process_buffer(bvffer)
output_result(word_freq)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/emiyatqy/Word_Freq.git
git@gitee.com:emiyatqy/Word_Freq.git
emiyatqy
Word_Freq
Word_Freq
master

搜索帮助