It's so ANNOYING to break out of nested loops.
Auxiliary variables, conditional statements, non-linear paths through your code...
It's a mess!
But if you extract the looping logic to a generator, you get:
- less indentation โจ
- a flat loop you can easily break out of โจ
