В Python я не могу найти, как создать дочерний объект с родительской ссылкой.
class Parent: ..... class Child(Parent): ..... #how to achieve this? Parent p = Child()