Ah yes. Thanks ChrisA

http://www.tutorialspoint.com/python/python_loop_control.htm

The continue Statement:
The continue statement in Python returns the control to the beginning of the 
while loop. The continue statement rejects all the remaining statements in the 
current iteration of the loop and moves the control back to the top of the loop.

The continue statement can be used in both while and for loops.

Sayth
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to