我的问题可能很愚蠢,但我想知道从这个实例的属性获取对象实例是否可行?
示例:
class Person:
def __init__(self, age):
self.age = age
person = Person(age=2)
现在我想从person
获取person.age
,例如:
person_instance = get_object_instance(person.age)
我的示例非常简单,当然,我可以像person_instance = person
一样直接访问它,但在我的代码中,它比我传递person.age
作为参数更复杂。复杂的功能。