延迟Jython脚本

时间:2012-06-25 21:55:55

标签: loops timer delay jython sleep

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

1 个答案:

答案 0 :(得分:1)

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