import numpy as np
x = np.arange(10)
#save
np.save('save_x',x)
#load
np.load('save_x.npy')
save会自动补全后缀npy
留言
張貼留言