2014-03-02 114 views
1

我想創建一個程序,龜對象移動到用戶點擊鼠標的位置。我一直在試驗一段時間,但我似乎無法得到這個工作。Python - 移動龜到鼠標點擊

from turtle import * 
from time import sleep 
turtle = Turtle() 
screen = Screen() 
while True: 
    screen.onscreenclick(turtle.goto) 
    sleep(0.1) 

回答

2

你不需要while循環可言:

from turtle import * 
from time import sleep 
turtle = Turtle() 
screen = Screen() 
screen.onscreenclick(turtle.goto) 
turtle.getscreen()._root.mainloop() 
+0

好吧,我只是跑了,似乎該方案爲用戶提供了幾乎瞬間點擊。是否可以編寫程序,以便不斷檢查用戶點擊的位置?謝謝。 –

+0

@ Stickman803對,對不起。我修好了它。看我的編輯。 – turnt

+0

太棒了!這工作完美。謝謝! –