How to retrieve the associated address of a Python object with variable name obj in hexadecimal format ?
obj
Using id(obj)
id(obj)
Using hex(obj)
hex(obj)
Using id(hex(obj))
id(hex(obj))
Using hex(id(obj))
hex(id(obj))