Mega Code Archive
Categories
/
Python Tutorial
/
Statement
Using the continue statement in a forin structure
for x in range( 1, 11 ): if x == 5: continue print x, print "\nUsed continue to skip printing the value 5"