The break statement is used to break out of a loop statement i.e. stop the execution of
a looping statement, even if the loop condition has not become False or the sequence
of items has not been completely iterated over.
An important note is that if you break out of a for or while loop, any corresponding
loop else block is not executed.