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)
有帮助吗?

解决方案

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()
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top