Answers for "save numpy data"

16

np.save function

np.save('data.npy', num_arr) # save
new_num_arr = np.load('data.npy') # load
Posted by: Guest on July-27-2020
0

save numpy array

np.save("sim1.npy", sim)
Posted by: Guest on May-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language