You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
278 B
13 lines
278 B
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()
|