gpt4 book ai didi

python - 打开一个文本文件而不清除其中的所有内容?

转载 作者:太空狗 更新时间:2023-10-29 22:11:52 27 4
gpt4 key购买 nike

file = io.open('spam.txt', 'w')
file.write(u'Spam and eggs!\n')
file.close()

....(Somewhere else in the code)

file = io.open('spam.txt', 'w')
file.write(u'Spam and eggs!\n')
file.close()

我想知道如何保留一个我可以写入的 log.txt 文件?我希望能够打开一个 txt 文件,向其中写入内容,然后能够稍后打开它并且之前写入的内容仍然存在。

最佳答案

'w' 更改为 'a',表示 append mode .但是你真的应该保持文件打开并在需要时写入它。如果您要重复自己,请使用 logging模块。

关于python - 打开一个文本文件而不清除其中的所有内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6334382/

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