I\'m just starting out with Python 2.7 and I don\'t understand why something is happening:
In the following code, an embellished version of an example from the pytho
It is probably because of the break statement, which leaves the loop. The break statement is only reached when there is no exception in the line before.
break