Spot the loop-else misconception: a for loop receives an empty iterable, performs zero passes, and encounters no break. What happens to its attached else suite?
Explanation
The else suite runs because the loop finished without executing break; zero passes still count as such a normal finish. Requiring the body to run at least once confuses loop completion with body execution.