def __mul__(self , other): R , R_final = [] , [] for m in self.ListeMonomes: for mm in other.ListeMonomes: R += [ m * mm ]