id
The id function returns the "identity" of an object, that is, a constant numeric value that uniquely identifies the object for as long as it is defined.
In Python, anything is an object, so we can get the identity from -even- the id function.
The identity of an object can vary from one execution of the code to another. Some objects always receive the same identity (integers between -5 and 256 inclusive, for example).