Hey! You're missing a colon after the `if` condition. It should be `if x == 5:` instead of `if x == 5`.
Python is super strict about colons in control structures. I used to mess this up all the time too. For quick checks, try pasting your code into an online Python validator like [Python Tutor](http://pythontutor.com/)—it highlights syntax error python issues instantly.
Hope that helps!
Python is super strict about colons in control structures. I used to mess this up all the time too. For quick checks, try pasting your code into an online Python validator like [Python Tutor](http://pythontutor.com/)—it highlights syntax error python issues instantly.
Hope that helps!
