gpt4 book ai didi

python - 如何输出到 txt(使用处理 3 在 Python 中编程)

转载 作者:行者123 更新时间:2023-12-04 09:46:18 24 4
gpt4 key购买 nike

我目前正在做一个项目,项目的一部分是在一个单独的 .txt 文件中向项目目录输出一些东西,我已经完成了,但是我遇到了一个问题,一切都很好,但是 我不想每次都创建一个新文件,但我希望将所有内容和所有记录都存储在一个文件中,并且它们只会不断累加 , 有人能帮我吗?

这是我想出的代码的一部分,不要打扰“%d”等。我只需要输出帮助:

output = createWriter("rekordi.txt")
output.print("Tvoj zadnji rekord je " + str(millis()/1000-sekunde) + " sekund || ob " + str(datum.strftime("%I:" + "%M" + " %p" + " na " + "%d." + "%b"))) # Write the date to the file
output.flush()# Writes the remaining data to the file
output.close()# Finishes the file

最佳答案

您要做的是在 append 中打开一个文件模式。如果它不存在,这将创建它,如果它已经存在,它将附加到它而不是覆盖它。这样的事情应该做你想做的事:

my_file_path = 'output_record.txt'
with open(my_file_path, 'a') as outfile:
outfile.write(<output data here in string format> + '\n') # \n for newline
with ...是一个上下文管理器 block ,这意味着当该代码块退出时文件将自动关闭。和 'a' open 的第二个参数指定 append模式。

希望对您有所帮助,编码快乐(星期五快乐)!

关于python - 如何输出到 txt(使用处理 3 在 Python 中编程),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62089661/

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