Create array with evenly spaced numbers over interval
Create a NumPy array
Create array with evenly spaced values
Generate random numbers
np.random.rand() / np.random.randint()
Create arrays of random integers or floats.
2x2 random floats [0,1)
np.random.rand(2, 2)
3x3 random integers from 0-9
np.random.randint(0, 10, (3,3))
Create array filled with zeros
Create array filled with ones
Get shape of array