0

我正在考虑实现如下功能:

timeout = 60 second
timer = 0
while (timer not reach timeout):
    do somthing
    if another thing happened:
         reset timer to 0

我的问题是如何实现计时器的东西?多线程还是特定的库?

我希望解决方案是基于 python 内置库而不是一些第三方花哨的包。

4

2 回答 2

1

我不认为你需要你所描述的线程。

import time

timeout = 60
timer = time.clock()
while timer + timeout < time.clock():
    do somthing
    if another thing happened:
        timer = time.clock()

在这里,您检查每个迭代。

您需要线程的唯一原因是,如果某些事情花费的时间太长,您想在迭代中间停止。

于 2013-11-09T21:08:25.760 回答
0

我使用以下成语:

from time import time, sleep

timeout = 10 # seconds

start_doing_stuff()
start = time()
while time() - start < timeout:
    if done_doing_stuff():
        break
    print "Timeout not hit. Keep going."
    sleep(1) # Don't thrash the processor
else:
    print "Timeout elapsed."
    # Handle errors, cleanup, etc
于 2013-11-09T21:21:20.943 回答