문제

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