# Issues with code Output

**URL:** https://forum.code.org/t/issues-with-code-output/40415
**Category:** Unit and Lesson Discussion
**Created:** [February 13, 2025, 9:39pm UTC](https://forum.code.org/t/issues-with-code-output/40415 "2025-02-13T21:39:18Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![jmarro](https://avatars.discourse-cdn.com/v4/letter/j/aeb1de/32.png) [@jmarro](https://forum.code.org/u/jmarro)
#### Post date: [February 13, 2025, 9:39pm UTC](https://forum.code.org/t/issues-with-code-output/40415/1 "2025-02-13T21:39:18Z")

</div>

> **[Check out what I made](https://studio.code.org/projects/applab/pmbEW3ho-5xDQ8id4Z0WJHrhwrQCxPeThvooKypKOc8)**
>
> I wrote the code myself with Code.org

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.

---

<div class="post-metadata">

### Author: ![bhatnagars](https://sea2.discourse-cdn.com/flex016/user_avatar/forum.code.org/bhatnagars/32/4919_2.png) [@bhatnagars](https://forum.code.org/u/bhatnagars)
#### Post date: [February 13, 2025, 10:17pm UTC](https://forum.code.org/t/issues-with-code-output/40415/2 "2025-02-13T22:17:09Z")

</div>

Here are some errors I found.

1. 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.
2. On line 13, you are comparing time \>= “after noon”. You might want to change that to time != “after noon”
