What role does indentation play after an if, for, or while header in Python?
if
for
while
It defines which statements belong to that control-flow block.
It converts every indented statement into a comment.
It automatically creates a new variable scope for every line.
It is only visual styling and never affects program structure.