1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
from tkinter import *
def maFonction1():
global nbrBoucle
if nbrBoucle < 2:
maVariable = "toto"
tex1 = Label(fen1, text=maVariable).pack()
nbrBoucle = nbrBoucle + 1
fen1.after(50,maFonction1)
time.sleep(3.0)
# fen1 actualisée que lorsqu'il y a retour au gestionnaire d'évenements graphique !!!
def start():
global nbrBoucle
nbrBoucle = 1
maFonction1()
fen1 = Tk()
fen1.title("Mon titre")
tex1 = Label(fen1, text="Mon texte")
tex1.pack()
But1 = Button(fen1, text ='START', command=start).pack()
fen1.mainloop() |
Partager