You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
368 B
13 lines
368 B
time = 8
|
|
|
|
if time < 9:
|
|
print("Morning is wonderful. Its only drawback is that it comes at such an inconvenient time of a day.")
|
|
elif time <= 16:
|
|
print("Working hard or hardly working?")
|
|
elif time < 20:
|
|
print("How did it get so late so soon?")
|
|
elif time < 22:
|
|
print("A day without sunshine is like, you know, night.")
|
|
else:
|
|
print("Burning the midnight oil!")
|