a = ["a"宴枣,"b","c"]
file = open('test.txt','w')
for i in a:
file.write(i)
file.close()
newfile = open("test.txt")
newfile.read()
你的缩进有问题,这样就好了。
x=5y=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()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)