When does an indented block under if x > 5: execute?
if x > 5:
Only when x > 5 evaluates to true
x > 5
Only after all following statements
Only when the condition is false
On every run