Create array filled with zeros
Create array with evenly spaced values
Create array with evenly spaced numbers over interval
Create array filled with ones
np.ones((rows, cols))
Initializes an array of given shape with ones.
2x4 array of ones
np.ones((2, 4))
Create a NumPy array
Get shape of array
Reshape an array