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.

21 lines
351 B

4 weeks ago
from tkinter import *
3 weeks ago
from calculette import *
4 weeks ago
3 weeks ago
fenetre=Tk()
fenetre.title("Calculatrice")
4 weeks ago
3 weeks ago
calcLabel = Label(fenetre, text="saisir le calcul")
calcLabel.pack()
3 weeks ago
3 weeks ago
calc = StringVar()
calc.set("")
saisie = Entry(fenetre, textvariable=calc, width=10)
saisie.pack()
4 weeks ago
3 weeks ago
bouton1 = Button(fenetre, text="CALCULER", width=8)
bouton1.pack()
4 weeks ago
3 weeks ago
fenetre.mainloop()
4 weeks ago