commit
bc8887279b
1 changed files with 13 additions and 0 deletions
@ -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…
Reference in new issue