将数据保存为 CSV 样式的 ASCII 文件

模拟到 np.loadtxtnp.savetxt 可用于将数据保存在 ASCII 文件中

import numpy as np
x = np.random.random([100,100])
np.savetxt("filename.txt", x)

要控制格式:

np.savetxt("filename.txt", x, delimiter=", " , 
    newline="\n", comments="$ ", fmt="%1.2f",
    header="commented example text")

输出:

$ commented example text
0.30, 0.61, 0.34, 0.13, 0.52, 0.62, 0.35, 0.87, 0.48, [...]