Introduction
Loop labels help you control which loop to stop or continue when you have loops inside loops.
When you have a loop inside another loop and want to stop the outer loop from inside the inner loop.
When you want to skip to the next round of an outer loop from inside a nested loop.
When you want to make your code clearer by naming loops instead of guessing which loop breaks.
When you want to avoid confusing or complicated logic with flags or extra variables.