commit bc8887279ba811fda2dda728cd643b3b6c39b202 Author: enora.delmas <> Date: Mon Feb 2 11:13:53 2026 +0100 1er commit 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