np.load

np.save('data.npy', num_arr) # save
new_num_arr = np.load('data.npy') # load
Vivacious Vole