gpt4 book ai didi

python - 如何在 Python 中写入多个文件?

转载 作者:行者123 更新时间:2023-11-28 21:50:00 25 4
gpt4 key购买 nike

我有两个文件要打开:

file = open('textures.txt', 'w')
file = open('to_decode.txt', 'w')

那我想分别给他们两个写信:

file.write("Username: " + username + " Textures: " + textures)
file.write(textures)

第一次写的东西是第一次打开,第二次写的是第二次。我该怎么做?

最佳答案

您正在用第二个打开覆盖 file 变量,因此所有写入都将定向到那里。相反,您应该使用两个变量:

textures_file = open('textures.txt', 'w')
decode_file = open('to_decode.txt', 'w')

textures_file.write("Username: " + username + " Textures: " + textures)
decode_file.write(textures)

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

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