gpt4 book ai didi

python - 如何 append 到文件?

转载 作者:bug小助手 更新时间:2023-10-28 01:28:18 25 4
gpt4 key购买 nike

如何 append 到文件而不是覆盖它?

最佳答案

open() 中设置模式到 "a"(追加)而不是 "w"(写入):

with open("test.txt", "a") as myfile:
myfile.write("appended text")

documentation列出所有可用的模式。

关于python - 如何 append 到文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4706499/

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