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