What is the difference between ndarray and array in Numpy? And where can I find the implementations in the numpy source code?
ndarray
array
I think with np.array() you can only create C like though you mention the order, when you check using np.isfortran() it says false. but with np.ndarrray() when you specify the order it creates based on the order provided.
np.array()
np.isfortran()
np.ndarrray()