如何在python中监视变量?

时间:2017-09-26 09:10:32

标签: python events subprocess wait sleep

我有一个简单的python烧瓶项目,我需要在进行任何操作之前获得用户确认。

...
#need to confirm from the user before the action takes place. If it is yes, continue with action(), else skip action
#I need to keep monitoring the confirm_var here
action()
...

在收到用户的确认后,我调用此confirmation()函数来使用AJAX调用设置confirm_var。

def confirmation()
    #set confirm_var to yes/no depending on user input.

所以,我的问题是如何继续监控confirm_var

1 个答案:

答案 0 :(得分:0)

您可以使用wait函数编写自己的事件。等待是更多的CPU饥饿,但它更敏感。例如,请参阅here。但这取决于你的python版本。