import time
now_time = time.strftime("%H:%M:%S", time.localtime()) # 现在的时间
print("现在是北京时间:{}".format(now_time))
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("现在是晚上")