Mencari alamat objek dalam python

# get the memory address of an object in Python  as a hex representation
hex_address = hex(id(object_name))
Lidia J. Opuchlik