码迷,mamicode.com
首页 > 其他好文 > 详细

文件方式实现完整的英文词频统计实例

时间:2017-09-26 10:05:56      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:set   range   items   for   词频统计   read   方式   txt   ict   

>>> fo.open(‘coffee.txt‘,‘r‘)
coffee=fo.read()
coffee=coffee.lower()
for i in ‘,.‘:
coffee=coffee.replace(i,‘ ‘)
words=coffee.split(‘ ‘)
exp={‘‘,‘the‘,‘a‘,‘was‘,‘of‘,‘and‘,‘that‘,‘he‘,‘in‘}
dict={}
keys=set(words)-exp
for i in keys:
dict[i]=words.count(i)
count=list(dict.items())
count.sort(key=lambda x:x[1],reverse=True)
for i in range(20):
print(count[i])

文件方式实现完整的英文词频统计实例

标签:set   range   items   for   词频统计   read   方式   txt   ict   

原文地址:http://www.cnblogs.com/coffee2/p/7595191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!