我想在python中构造一个while循环,等待某些条件(函数foo
)进行更改,或者在指定时间后给出超时。这是我如何编码
def wait_change():
import time
timeout = 10 # time out of 10 seconds for example
# set initial time and initial variables
start_time = time.time()
current_time = 0
start_state = foo()
current_state = start_state
while current_time<timeout and start_state==current_state:
current_time = time.time()-start_time
current_state = foo()
if current_time<timeout:
return None
else:
return current_state
此功能运行良好,但我不确定这是否是最佳方法。重要的是我想检查一些状态并返回它,并在超时的情况下通知调用函数(这里返回None
)。
这是最好的实现,还是有更多的pythonic方法来处理这个?特别是我担心
foo
None
)signal
或threading
可能会更有用,从而产生更好的代码谢谢, 亚历