python中的空文件

时间:2017-12-07 06:09:44

标签: python file text-files

我正在尝试使用列表中的所有磁性信息创建一个文件。我之前也使用过这段代码。由于某种原因,它返回的文件是空的。我不确定为什么。

这是我的代码:

magnetosheath_Bx = JSS_Bx[12339:13795]
magnetosheath_By = JSS_By[12339:13795]
magnetosheath_Bz = JSS_Bz[12339:13795]        
magnetosheath_B = JSS_Bmag[12339:13795]
magnetosheath_time = epochtime_magdata[12339:13795]
magnetosheath_r = new_RJSE[12339:13795]   

Magnetosheath_data = zip(magnetosheath_Bx, magnetosheath_By, magnetosheath_Bz, magnetosheath_B, magnetosheath_time, magnetosheath_r)


filenew= open('Ulysses_Magnetoseath.txt' , 'w') 

filenew.write("hello")
for magnetic_data in Magnetosheath_data:
        filenew.write('{}   {}  {}  {}  {}  {}\n'.format(magnetic_data[0], magnetic_data[1], magnetic_data[2], magnetic_data[3],magnetic_data[4],magnetic_data[5] ))
        filenew.write("hello")

0 个答案:

没有答案