We say that in Python, every object that is created is given a number that uniquely identifies it.
When we let a point to 500 and obtain the id of both a and 500:
a=500
id(a), id(500)
(140733559789896, 140733559789992)
does this mean that the ID of the reference a (140733559789896) "points" to object 500 like a points to 500?
And why is 140733559789992 not the id of the object 500?