在Python中,类可以通过`super()`函数来调用类的属性。具体的方法是在类的初始化函数`__init__()`中调用`super().__init__()`来调用类的初始化函数,从而获得类的属性。例如: ```python class Parent: def __init__(self): self.parent_property = "I am from Parent class" class Child(Parent): def __init__(self): super().__init__() self.child_property = "I am from Child class" child = Child() print(child.parent_property) ``` 在这个例中,类`Child`继承了类`Parent`,并且在类的初始化函数中调用类的初始化函数,从而获得了类的属性`parent_property`。最后,我们通过`print(child.parent_property)`打印出了类的属性