gpt4 book ai didi

python - 将出现次数写入文件

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

我正在计算列表(称为 a_master)中单词出现的次数。要搜索和计数的单词位于dictionary.txt 中。问题是,当我将计数写入文件时,结果如下:

1Count cloud
19Count openstack
3

这是代码:

with open("dictionary.txt","r") as f:
for line in f:
if a_master.count(line.strip()) !=0:
file.write( "Count " + line + str((a_master).count(line.strip())))

正如您所看到的,由于某种原因,当它输出数字时,它会将其放在一个新行上,我不知道为什么!

最佳答案

在线使用.strip()。

试试这个

with open("dictionary.txt","r") as f:
for line in f:
if a_master.count(line.strip()) !=0:
file.write( "Count " + line.strip() + str((a_master).count(line.strip())))

关于python - 将出现次数写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29821908/

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