From 786086c421db723246de4e1e2dd14aea57cb77d8 Mon Sep 17 00:00:00 2001 From: RASCHELLA Bastien Date: Tue, 3 Mar 2026 14:19:12 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'calculatrice.py'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- calculatrice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calculatrice.py b/calculatrice.py index 353ac7c..49f0297 100644 --- a/calculatrice.py +++ b/calculatrice.py @@ -59,7 +59,7 @@ class Fenetre(tk.Tk): self.ecran.config(text=self.texte) def calculer(self): - """calcul l'expression ecrite en polonais inversé et l'affiche en notation infixe suivit du resultat""" + """calcul l'expression ecrite en polonais inversé ou les caractères sont espacés d'un espace et l'affiche en notation infixe suivit du resultat""" lst = self.texte.split(" ") e = npi2tree(lst) self.ecran.config(text = str(e) + "=" + str(e.evalue()))