from turtle import * def jump(x, y): stift.penup() stift.goto(x, y) stift.pendown() stift = Turtle() stift.speed(0) stift.shape("circle") stift.shapesize(0.4, 0.4, 3) stift.pensize(3) onscreenclick(stift.goto,1) onscreenclick(jump, 2) mainloop()