18 lines
506 B
Python
18 lines
506 B
Python
from tkinter import *
|
|
|
|
# On crée une fenêtre
|
|
fenetre = Tk()
|
|
|
|
# On choisit ce qu'on affiche dans la fenêtre
|
|
champ_label = Label(fenetre, text="Choisir d'afficher les histogrammes ou la matrice dynamique").grid()
|
|
|
|
|
|
bouton_histo = Button(fenetre, text="histogrammes", command=fenetre.quit).grid()
|
|
|
|
bouton_mat = Button(fenetre, text="matrice dynamique", command=fenetre.quit).grid()
|
|
|
|
fenetre.geometry("400x100")
|
|
|
|
# On démarre la boucle Tkinter qui s'interompt quand on ferme la fenêtre
|
|
fenetre.mainloop()
|