欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python 指定时间运行代码

程序员文章站 2022-05-27 16:05:42
...

如果想要在指定时间里运行某段代码,可以参考以下程序。

import time
from interval import Interval

while True:
    # 当前时间
    now_localtime = time.strftime("%H:%M:%S", time.localtime())
    # 当前时间(以时间区间的方式表示)
    now_time = Interval(now_localtime, now_localtime)
    print(now_time)

    time_interval = Interval("11:15:00", "15:50:00")
    print(time_interval)

    if now_time in time_interval:
        print("是在这个时间区间内")
        print("要执行的代码部分")

python 指定时间运行代码