Question

I'd like to create a program where a turtle object moves to where a user clicks their mouse. I've been experimenting for a while, but I can't seem to get this to work.

from turtle import *
from time import sleep
turtle = Turtle()
screen = Screen()
while True:
    screen.onscreenclick(turtle.goto)
    sleep(0.1)
Était-ce utile?

La solution

You don't need the while loop at all:

from turtle import *
from time import sleep
turtle = Turtle()
screen = Screen()
screen.onscreenclick(turtle.goto)
turtle.getscreen()._root.mainloop()
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top