Empty array
np.empty((2,3))
Note that in this case, the values in this array are not set. This way of creating an array is therefore only useful if the array is filled later in the code.
From a list
np.array([0,1,2,3])
# Out: array([0, 1, 2, 3])
Create a range
np.arange(4)
# Out: array(...