Answers for "save data as npz file python"

0

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)
Posted by: Guest on August-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language