Create a NumPy array
Create array with evenly spaced values
Create array with evenly spaced numbers over interval
Reshape an array
arr.reshape(new_shape)
Change the dimensions of an array without changing its data.
Reshape into 2x6 array
arr.reshape(2, 6)
Create array filled with zeros
Create array filled with ones
Get shape of array