Python Break:
Python break statement is used to break the execution of current loop in between the loop.
Break statement breaks the continuity of the containing loop only, i.e, external loops will not get affected because of Break statement in inner loop.
Syntax:
loop/conditions statements:
statements
break
Example:
//pythonexample.py
print "Extracting ALPHA from word ALPHANUMERIC:" for x in "ALPHANUMERIC": if x == "N": break print x |
Output: