标签: python oop
在Python中,我找不到使用父引用创建子对象的方法。
class Parent: ..... class Child(Parent): ..... #how to achieve this? Parent p = Child()