The link to the project shows an error about escaping and does not move the code to the next line for each output. Any suggestions would be appreciated.
Here are some errors I found.
- Whenever you are comparing strings, case is important. “Hello” and “hello” are not the same thing. So on line 11, you are comparing “Night” to “night”. That condition will not be true.
- On line 13, you are comparing time >= “after noon”. You might want to change that to time != “after noon”