Final answer:
Indented code blocks in Python only execute inside an IF statement if the condition of the IF statement is true.
Step-by-step explanation:
Indented code blocks in Python only execute inside an IF statement if the condition of the IF statement is true.
For example:
if x > 5:
print('x is greater than 5')
else:
print('x is less than or equal to 5')
In this code, the indented code block under the 'if' statement will only execute if the condition 'x > 5' is true.