I read the Python 2 docs and noticed the id() function:
id()
Return the “identity” of an object. This is an integer (or long integer) which is
The is operator uses it to check whether two objects are identical (as opposed to equal). The actual value that is returned from id() is pretty much never used for anything because it doesn't really have a meaning, and it's platform-dependent.
is