Python在Windows10

时间:2017-03-07 14:34:34

标签: python windows python-3.x

我想知道我是否可以在计算机睡眠之前在python程序中启动一个函数或一个方法,这就是

的内容。
def f():
    if about_to_sleep:
        do_stuff
    else:
        do_some_other_stuff

可以在Windows 10中使用

2 个答案:

答案 0 :(得分:1)

如果你不介意编写一个小的C ++应用程序在后台运行,它可以在检测到计算机进入睡眠状态时调用你的python脚本。

看看: Qt detect when computer goes into sleep?

答案 1 :(得分:1)

Detecting computer/program shutdown in Python?

这是一个类似于你的问题,但可能仍然具有相关性。