保存和加载#

import numpy as np

npy 保存和加载#

x = np.random.randn(10, 10)
# 保存
np.save("save_example", x)
# 加载
x_npy = np.load("save_example.npy")
np.all(x_npy == x)
True

txt 保存和加载#

# txt只能保存和加载1、2维ndarray
np.savetxt("save_example.txt", x)
# 加载
x_txt = np.loadtxt("save_example.txt")
np.all(x_txt == x)
True