从Python中的object属性获取对象

时间:2018-06-11 09:37:57

标签: python python-3.x

我的问题可能很愚蠢,但我想知道从这个实例的属性获取对象实例是否可行?

示例:

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作为参数更复杂。复杂的功能。

0 个答案:

没有答案