def Affiche(self , space = 0): spaces = " " * space print(spaces , self.root) for child in self.enfants: child.Affiche(space + 2)