From bc8887279ba811fda2dda728cd643b3b6c39b202 Mon Sep 17 00:00:00 2001 From: "enora.delmas" <> Date: Mon, 2 Feb 2026 11:13:53 +0100 Subject: [PATCH] 1er commit --- calculatrice.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 calculatrice.py diff --git a/calculatrice.py b/calculatrice.py new file mode 100644 index 0000000..ddf1f22 --- /dev/null +++ b/calculatrice.py @@ -0,0 +1,13 @@ +import tkinter as tk +from tkinter.constants import * + +class Fenetre(tk.Tk): + def __init__(self): + tk.Tk.__init__(self) + self.title("Calculatrice") + self.geometry("400x600") + self.configure(bg='white') + + +window = Fenetre() +window.mainloop() \ No newline at end of file