import numpy as np
a = np.arange(10)
id(a)
Here we know that id function return the identity of the object 'a'. Suppose that we only know the id of object(139806990767008 int or long), How can I get the data from 139806990767008 returned by id function. Or get which object's id is the 139806990767008.