我的Python腳本被告知:延遲Jython腳本
import time
def wait_seconds(x):
print "started"
time.sleep(x)
print "stopped"
然後當我告訴它:
>>> wait(.2)
我得到:
///it waits .2 seconds and then...
started
stopped
它等待它先天下之憂這不是我正在尋找的。 如果我在一個循環中使用睡眠,它不會做任何事情(它只是在睡覺時才被抓住)
有沒有更好的方法來做短暫的延遲? 感謝任何回覆! :D
欲瞭解更多信息:我用這個連續的遊戲循環;) – Luft