0

我的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

4

1 回答 1

1

尝试在延迟之前刷新标准输出。

于 2012-06-25T22:18:26.273 回答