python 数据输出到文件

已知x0=[1,2,3,4,5]

       y0=[1,2,3,4,5]

若要把x0,y0输出到文件123.dat中,程序如下:

法一:

with open('123.dat','w') as f:
    for i,j in zip(x0,y0):
        f.write(str(i))            #将数值转换为字符串
        f.write("   ")             #两字符间用3个空格连接
        f.write(str(j))
        f.write('\n')
        f.close

法二:

file=open('data.txt','w')
file.write(str(list_data));
file.close()

 

你可能感兴趣的:(python)