C-16-Q115mediumsingle_mcq
If the if condition is true, Python executes:
If the if condition is true, Python executes:
- anothing
- bthe statement(s) in the body of the if (the indented block)
- conly the line above the if
- dthe next program file
ব্যাখ্যা
When the condition evaluates to true, Python runs the indented statement(s) that form the body of the if. The indentation is what defines which statements belong to the block.