PY
py
1
2
3
4
5
6
7
8
9
time = int(input("Enter time (0-24): \n"))
print("Enter time is: ",time)
if 1 <= time and time < 12: # Morning (1 to 11)
print("Good Morning...")
elif 12 <= time and time < 16: # Afternoon (12 to 15)
print("Good Afternoon...")
else: # Evening (16 and beyond)
print("Good Evening...")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run