如何在python中使用schedule模块指定周六和周日
时间: 2023-09-02 13:12:00 浏览: 157
使用python计算指定天数是周几
的定时任务?
你可以使用schedule模块中的weekday和interval功能来指定周六和周日的定时任务。比如:
```python
import schedule
import time
def job():
print("I'm working...")
# 每周六、周日的10:30执行任务
schedule.every().weekend.at("10:30").do(job)
while True:
schedule.run_pending()
time.sleep(1)
```
这段代码中的`every().weekend`表示每个周末,`at("10:30")`表示在10点30分执行任务,`do(job)`表示执行`job()`函数。
阅读全文