將資料儲存為 CSV 樣式的 ASCII 檔案
模擬到 np.loadtxt
,np.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, [...]