The same id
for different variables is a product of how Python creates variables.
id
is a hash of the the location of an object in memory. Python variables are references to an object, not new objects. If several variables reference the same object, they have the same `id.