I constructed an numpy array::
a=np.ndarray([2,3])
then i want to see where its data are::
a.data >>>Out[213]: &
Also, have a look at ndarray.__array_interface__, which is a dict that contains all of the information you're after.
In your case,
pointer, read_only_flag = a.__array_interface__['data']