Create array with evenly spaced numbers over interval
Create array filled with zeros
Create array filled with ones
Create array with evenly spaced values
np.arange(start, stop, step)
Similar to Python’s range() but returns a NumPy array.
Array from 0 to 8 step 2
np.arange(0, 10, 2)
Create a NumPy array
Get shape of array
Reshape an array