np.array()
Creates a NumPy array from a list or tuple.
.ndim
Returns the number of dimensions of the array.
np.array(34)
Creates a scalar (0D) NumPy array.
.shape
Returns the shape as (rows, columns).
np.array().ndimnp.array(34).shape(rows, columns).
np.arange()np.linspace()np.logspace()np.zeros()np.ones()np.full()np.empty()np.random.rand()np.random.randn()np.random.randint().dtypeastype().size.itemsizereshape()ravel()flatten()np.sin()np.take()np.nditer()np.ndenumerate()transpose()swapaxes()np.concatenate()np.vstack()np.hstack()np.stack()np.split()np.repeat()np.tile()np.sum()np.std()np.min()np.cumsum()np.cumprod()np.where()np.argwhere()np.logical_and()np.logical_or()np.nannp.isnan()np.isinf()np.nan_to_num()