python判断时间为哪个时刻

import time
now_time = time.strftime("%H:%M:%S", time.localtime())     # 现在的时间
print("现在是北京时间:{}".format(now_time))

python判断时间为哪个时刻_第1张图片

import time
now_time = time.strftime("%H:%M:%S", time.localtime())     # 现在的时间
print("现在是北京时间:{}".format(now_time))
# 判断时间
if "06:00:00" < now_time < "11:00:00":
    print("现在是早上") 
if "11:00:00" < now_time < "14:00:00":
    print("现在是中午") 
if "18:00:00" < now_time < "24:00:00":
    print("现在是晚上") 

 python判断时间为哪个时刻_第2张图片

 

你可能感兴趣的:(Python,python)