Oct-24-2019, 04:34 PM
(Oct-24-2019, 03:54 PM)pyThon_ Wrote: What makes you think the unique identifier is the memory address? The docs don’t say anything about it being an memory address, here this link will help out click meSure if want to dig deeper and find where the address is in C using ctypes as you see in your link a couple of post further.
See what
help(id)
return.>>> help(id) Help on built-in function id in module builtins: id(obj, /) Return the identity of an object. This is guaranteed to be unique among simultaneously existing objects. (CPython uses the object's memory address.)Then have to explain that this is the Python implementation memory address.
To get the C level address has to use ctypes or what's the assembly code or better 000100100110001 adress ,just stop

Dos this matter at all?