Python Continue:
Python Continue statement is used to skip the execution of current iteration in between the loop.
Continue statement breaks the continuity of the current iteration only, i.e, next iterations will not get affected because of Continue statement in current iteration.
Syntax:
loop/conditions statements:
statements
continue
Example:
//pythonexample.py
print "Extracting terms from word ALPHA_NUMERIC:" for x in "ALPHA_NUMERIC": if x == "_": print "\n" continue print x |
Output: