gpt4 book ai didi

python - python 中的文件追加

转载 作者:行者123 更新时间:2023-12-01 04:39:11 30 4
gpt4 key购买 nike

我在/root 位置有 n 个文件,如下

result1.txt
abc
def

result2.txt
abc
def
result3.txt
abc
def

等等。我必须创建一个名为 result.txt 的综合文件,其中包含循环遍历位置/root/samplepath 中 n 个文件的所有结果文件串联的所有值。

最佳答案

正如其他人所建议的那样,使用 cat 可能更容易。如果您必须使用 Python 来完成此操作,那么这应该可行。它查找目录中的所有文本文件并将其内容附加到结果文件中。

import glob, os

os.chdir('/root')

with open('result.txt', 'w+') as result_file:
for filename in glob.glob('result*.txt'):
with open(filename) as file:
result_file.write(file.read())
# append a line break if you want to separate them
result_file.write("\n")

关于python - python 中的文件追加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31141317/

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