Python
(1)
收藏
我要回答
#主控程序,开启定时任务,播放铃声 #使用APScheduler定时框架 pip install apscheduler from apscheduler.schedulers.blocking import BlockingScheduler from datetime import datetime def job(): print(f'wanmait.com测试{datetime.now().strftime("%Y-%m-%d %H:%M:%S")}') scheduler = BlockingScheduler() scheduler.add_job(job,'interval',seconds=5) scheduler.start()
1个回答
我要回答