class Node(object):
def __init__(self, data):
self.data = data
if __name__ == "__main__":
a = Node(5)
print a # prints __main__.Node object at 0x025C7530
print a.__dict__ # how can I turn this back into the previous line?
反正有沒有把字典回到對象中?如何將對象.__ dict__再次轉換爲對象本身?
你想用這個做什麼?如果該屬性不是隻讀的,則最終會產生無限遞歸對象。 – Blender 2012-03-22 05:24:42
我使用的函數「gc.get_referrers」只返回對象的字典而不是對象。 – Jae 2012-03-22 05:27:20