Lol, classic mistake! The colon is *everything* in Python. No colon, no party.
Your line should be:
```python
if x == 5:
print("Hello")
```
If you're using VS Code, the linter usually catches syntax error python stuff like this right away. Maybe enable PyLint if you haven’t already?
Your line should be:
```python
if x == 5:
print("Hello")
```
If you're using VS Code, the linter usually catches syntax error python stuff like this right away. Maybe enable PyLint if you haven’t already?
