Classic! The colon is non-negotiable in Python.
Corrected code:
```python
if x == 5:
print("Hello")
```
If you’re new to Python, I’d suggest playing around with [Codecademy’s Python course](https://www.codecademy.com/). They drill this stuff into you so you don’t miss it.
Corrected code:
```python
if x == 5:
print("Hello")
```
If you’re new to Python, I’d suggest playing around with [Codecademy’s Python course](https://www.codecademy.com/). They drill this stuff into you so you don’t miss it.
