class Tree: def __init__(self, root, child): self.root = root self.child = child def add_child(self, obj): self.ch