from turtle import *
 
links=Turtle()
rad=Turtle()
rechts=Turtle()
 
onscreenclick(links.goto,1)  #1-linke Maustaste
onscreenclick(rad.goto,2)    #2-Mausrad
onscreenclick(rechts.goto,3) #3-rechte Maustaste
mainloop()