我的python脚本被告知:
import time
def wait_seconds(x):
print "started"
time.sleep(x)
print "stopped"
然后当我告诉它时:
>>> wait(.2)
我得到:
///it waits .2 seconds and then...
started
stopped
它会在做任何其他事情之前等待,这不是我想要的。如果我在循环中使用睡眠它什么都不做(它只做睡眠)
有没有更好的方法来做短暂的延迟?感谢任何回复的人!:D