user62498
0
Q:

save data as npz file python

# save numpy array as npy file
from numpy import asarray
from numpy import save
# define data
data = asarray([[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]])
# save to npy file
save('data.npy', data)

# load numpy array from npy file
from numpy import load
# load array
data = load('data.npy')
# print the array
print(data)
1

New to Communities?

Join the community