📜  如何在 Windows 中调度 python 脚本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:24.590000             🧑  作者: Mango

代码示例2
import schedule
import time
import os

when= "20:11"
print("The computer will be shutdown at " + when + "")

def job():
    os.system("shutdown /s /t 1")

schedule.every().day.at(when).do(job)

while True:
    schedule.run_pending()
    time.sleep(1)