Entry
########## Importer les modules necessaires ##############
from tkinter import *
##########################################################
########## Fonctions ##################################
##########################################################
def aff():
t=Champ.get()
Lab.configure(text='Bonjour'+t)
##########################################################
########## Variables ##################################
##########################################################
#########################################################
########## Interface graphique ##########################
##########################################################
Mafenetre = Tk()
Mafenetre.title("Titre")
bouton=Button(Mafenetre, text="Nom ?", command=aff)
bouton.pack(side=RIGHT)
Lab = Label(Mafenetre, text = "???", fg ='red', bg ='white')
Lab.pack(side =LEFT, padx = 5, pady = 5)
Champ = Entry(Mafenetre, bg ='bisque', fg='maroon')
Champ.focus_set()
Champ.pack(side = LEFT, padx = 5, pady = 5)
###########################################################
########### Receptionnaire d'évènement ####################
###########################################################
###################### FIN ###############################
Mafenetre.mainloop()