def Largeur(self): F , L = deque([]) , [] L.append(self.root) F.append(self) while F: for child in F[0].enfants: L.append(child.root) F.append(child) F.popleft() return L