Bouton Radio
########## Importer les modules necessaires ##############
from tkinter import *
##########################################################
########## Fonctions ##################################
##########################################################
def aff():
t=varRadio.get()
Lab.configure(text='Nombre de joueur :'+t)
##########################################################
########## Variables ##################################
##########################################################
#########################################################
########## Interface graphique ##########################
##########################################################
Mafenetre = Tk()
Mafenetre.title("Titre")
Lab = Label(Mafenetre, text = "???", fg ='red', bg ='white')
Lab.pack(side =LEFT, padx = 5, pady = 5)
varRadio = StringVar()
Radiobutton(Mafenetre, text='choix 1',variable= varRadio, value='1', command=aff).pack(padx=10, pady=2)
Radiobutton(Mafenetre, text='choix 2', variable= varRadio, value='2', command=aff).pack(padx=10, pady=2)
###########################################################
########### Receptionnaire d'évènement ####################
###########################################################
###################### FIN ###############################
Mafenetre.mainloop()