Simple question, look at this code..
greeting_morning = "good morning"
greeting_night = "good night"
time = "morning"
print(greeting_time) # should be printing good morning
And this results an error..
Did you notice my problem?
I just want it to print "good morning," but it won't.
How can I properly fix it?