187k views
1 vote
Based on the behavior of Python code in the the prior two questions, do

indented code blocks always execute inside an IF statement?
a) Yes
b) No

User Michilus
by
7.0k points

1 Answer

2 votes

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.

User Meryle
by
8.1k points