C-17-Q134mediumsingle_mcq
In Python, indentation level inside a block must be:
In Python, indentation level inside a block must be:
- aConsistent across the lines of that block
- bDifferent on every line
- cAlways exactly one tab character
- dReplaced with semicolons
ব্যাখ্যা
All lines belonging to one block must share the same indentation level so Python recognizes them as one unit. The exact amount (spaces or a tab) is flexible, but it must be consistent within the block.