Дерево: прохождение после заказа
def postOrder(root):
if root:
postOrder(root.left)
postOrder(root.right)
print(root, end = " ")
Grieving Gazelle