def Postfixe(self , L = []): for child in self.enfants: child.Postfixe( L ) L.append(self.root) return L