Cliquer
########## Importer les modules necessaires ##############
from tkinter import *
##########################################################
########## Fonctions ##################################
##########################################################
def clic(event):
x=event.x
y=event.y
image=Canevas.create_oval(x-10,y-10,x+10,y+10,fill='red')
##########################################################
########## Variables ##################################
##########################################################
#########################################################
########## Interface graphique ##########################
##########################################################
Mafenetre = Tk()
Mafenetre.title("Titre")
Canevas = Canvas(Mafenetre,width=1000,height=1000,bg ='white')
Canevas.pack()
###########################################################
########### Receptionnaire d'évènement ####################
###########################################################
Canevas.bind('<Button-1>',clic)
###################### FIN ###############################
Mafenetre.mainloop()