gpt4 book ai didi

python - 存储文本文件中出现的每个单词的计数

转载 作者:太空宇宙 更新时间:2023-11-03 19:02:15 25 4
gpt4 key购买 nike

我想将文本文件中出现的每个单词的计数存储在字典中。我的意思是

fob= open('D:/project/report.txt','r')

我可以将这些行存储到一个列表中,但我需要将这些行拆分成单独的单词,最后存储它们的计数(就像在字典中一样)。

lst=fob.radlines()

#This doesn't work, gives error
#AttributeError: 'list' object has no attribute 'split'
mylst=lst.split()

我怎样才能做到这一点?做到这一点的有效方法是什么?

最佳答案

对于 Python 2.7+

from collections import Counter

with open('D:/project/report.txt','r') as fob:
c = Counter(word for line in fob for word in line.split())

对于 Python 2.5+

from collections import defaultdict
dd = defaultdict(int)

with open('D:/project/report.txt','r') as fob:
for line in fob:
for word in line.split():
dd[word] += 1

对于老 python 或讨厌defaultdict的人

d = {}

with open('D:/project/report.txt','r') as fob:
for line in fob:
for word in line.split():
d[word] = d.get(word, 0) + 1

关于python - 存储文本文件中出现的每个单词的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15737173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com