I constructed an numpy array::
a=np.ndarray([2,3])
then i want to see where its data are::
a.data >>>Out[213]: &
a.data might be a property whose getter function creates a new buffer object (meta data) on each call.
a.data
To get the address see how numpy.ctypeslib.as_ctypes() is implemented.