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