Pregunta

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)
¿Fue útil?

Solución

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()
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top