如何用python将变量及其值写入文本文件?

2024-11-03 15:04:46
推荐回答(3个)
回答1:

你的缩进有问题,这样就好了。

x=5
y=2
z=x+y 
f=open('test-i.dat','a+')
f.write(str("x=")+str(x)+'\n')
f.write(str("y=")+str(y)+'\n')
f.write(str("z=")+str(z)+'\n')
f.close()

回答2:

利用write函数写入文件,例如

a = ["a","b","c"]
file = open('test.txt','w')
for i in a:
    file.write(i)
file.close()
newfile = open("test.txt")
newfile.read()()

回答3:

看pyhton的文件操作