File size: 115 Bytes
ef007f9
 
 
 
 
1
2
3
4
5
6
import numpy as np

data = np.arange(100).reshape(1, 100)
print(np.array_str(data))
np.save('data.npy', data)