Possible Duplicate:
Python: Get object by id
I have a query, that is, in python if we try this
>>>a=5
>>>id(a)
>>>746363
that is we are getting id , it is equivalent to the address , my query is that ,there is any way to get the value or object from the id , just like we are getting the id from the object
just like as follows,
>>>object(746363)
>>>5
I wrote The above one to deliver my query clearly