gpt4 book ai didi

python - 为什么我不能用 Python 将列表的第一个元素写入文本文件?

转载 作者:太空宇宙 更新时间:2023-11-04 08:04:42 25 4
gpt4 key购买 nike

我得到了这样一个文本文件

Bruce
brucechungulloa@outlook.com

我用它来读取文本文件并将其导出到列表

with open('info.txt') as f:
info = f.readlines()
for item in info:
reportePaises = open('reportePaises.txt', 'w')
reportePaises.write("%s\n" % item)

但是当我想将list(info)的元素写入另一个文本文件时,只写入了info[1](邮件)

如何将整个列表写入文本文件?

最佳答案

with open('data.csv') as f:
with open('test2.txt', 'a') as wp:
for item in f.readlines():
wp.write("%s" % item)
wp.write('\n') # adds a new line after the looping is done

这会给你:

Bruce

brucechungulloa@outlook.com

在两个文件中。

关于python - 为什么我不能用 Python 将列表的第一个元素写入文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33491769/

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