zip(a,b,c,d)
with open('output.dat', 'w') as f:
print >>f, ("%-25s %-25s %-25s %s" %(x, y, z, k))
writer = csv.writer(f, delimiter='\t')
writer.writerows(zip(a,b,c,d))
这段代码的输出就像
51715.505899065996 2724172.4436709681 3081070.212397085 3419080.1274145059
我想以指数的形式写这些数字并四舍五入,例如第一个输出
5.172E4 ........
我怎样才能做到这一点 ?
拉莫斯之舞
慕仙森
相关分类