文件方式实现完整的英文词频统计实例
Posted 学徒小梁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件方式实现完整的英文词频统计实例相关的知识,希望对你有一定的参考价值。
1.读入待分析的字符串
2.分解提取单词
3.计数字典
4.排除语法型词汇
5.排序
6.输出TOP(20)
fo=open(‘xiaoliang.txt‘,‘r‘) song=fo.read() exc={‘the‘,‘a‘,‘to‘,‘of‘,‘and‘,‘in‘,‘that‘,‘on‘,‘‘} song=song.lower() for i in ‘‘‘,."-??\n‘‘‘: song=song.replace(i,‘‘) words=song.split(‘ ‘) dic={} keys=set(words) keys=keys-exc for i in keys: dic[i]=words.count(i) a=list(dic.items()) a.sort(key=lambda x:x[1],reverse=True) #print(a) for i in range(20): print(a[i]) fo.close()
以上是关于文件方式实现完整的英文词频统计实例的主要内容,如果未能解决你的问题,请参考以下文章