Browse Source

1er commit

master
enora.delmas 3 months ago
commit
bc8887279b
  1. 13
      calculatrice.py

13
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()
Loading…
Cancel
Save