C-18-Q030mediumsingle_mcq
Indentation in a Python while loop body is used to indicate:
Indentation in a Python while loop body is used to indicate:
- aComments only
- bThe block of code that belongs to the loop
- cVariable declarations
- dLibrary imports
ব্যাখ্যা
In Python, indentation is not cosmetic — it defines which statements belong to the loop's body. The indented lines under while form the block that is repeated.