1. 程式人生 > >numpy計算結果的保存——ndarray格式數據保存

numpy計算結果的保存——ndarray格式數據保存

div ndarray txt col bsp 數據保存 ray color class

1 Python保存numpy數據:

numpy.savetxt("result.txt", numpy_data)

2 保存list數據:

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

numpy計算結果的保存——ndarray格式數據保存