你的缩进有问题,这样就好了。
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()
利用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()()
看pyhton的文件操作