python3.3.2 如何统计文本文件中出现的每个单词出现的次数,单词之间使用空格隔开

python3.3.2如何统计文本文件中出现的每个单词数目,单词之间使用空格隔开如下面这段英文test.txt里面包含以下内容hellofeelloveIyoutestt... python3.3.2 如何统计文本文件中出现的每个单词数目,单词之间使用空格隔开
如下面这段英文
test.txt里面包含以下内容
hello feel love I you test test one two three
worlds
Pursuing further research may involve at a subsequent stage
the acquisition of a doctoral degree hello feel love I you test test one two three
Pursuing further research may involve
at a subsequent stage
the acquisition of a doctoral degree

如何统计这个文件中的每个单词出现的次数
展开
aa1ss2_2
推荐于2018-05-10 · TA获得超过397个赞
知道小有建树答主
回答量:178
采纳率:100%
帮助的人:194万
展开全部
很简答的东东

import re
import collections

print( collections.Counter( re.findall( '\w+' ,open( 'test.txt' ).read( ) ) ) )

还是多看看资料吧,这个是官方的标准答案
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
albumin
2014-03-20 · TA获得超过1.2万个赞
知道大有可为答主
回答量:4889
采纳率:87%
帮助的人:2333万
展开全部
wordtext=open(r'test.txt')
countdict={}
for line in wordtext:
for word in line.split():
word=word.lower()
if word in countdict:
countdict[word]+=1
else:
countdict[word]=1
for word in sorted(countdict):
print("%s:%d"%(word,countdict[word]))

统计文本文件test.txt中单词个数,不区分大小写,单词必须用空格分开,不能有其它字符
这个问题能不能换个分类,在这个分类无法使用格式代码
追问
如何将结果写入到文件中呢?
追答
python 2.x将最后的print语句改为
print >>result.txt,"%s:%d"%(word,countdict[word])
python 3.x版本,则改为
print("%s:%d"%(word,countdict[word]),file=open("result.txt"))
其中result.txt为要写入的文件
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式