专业编程基础技术教程

网站首页 > 基础教程 正文

python判断时间是否在某个时间段里面

ccvgpt 2024-08-12 15:02:02 基础教程 13 ℃
import time
from interval import Interval

# 当前时间
now_localtime = time.strftime("%H:%M:%S", time.localtime())
# 当前时间(以时间区间的方式表示)
now_time = Interval(now_localtime, now_localtime)
# 时间区间二
print(now_time)
time_interval_one = Interval("09:00:00", "15:50:00")
print(time_interval_one)
# 时间区间二
time_interval_two = Interval("11:00:00", "13:05:00")
print(time_interval_two)

# 方法二:
if now_time in time_interval_one or now_time in time_interval_two:
    print("是在这个时间区间内")

# 方法三;
if "09:00:00" < now_localtime < "15:00:00":
    print("是在这个时间区间内")

Tags:

最近发表
标签列表