Tools, FAQ, Tutorials:
'continue' Statement in Repeating Statement Blocks
How to use the "continue" statement in a repeating statement block in Python code?
✍: FYIcenter.com
The "continue" statement can be used in a repeating statement block like "for" and "while" loops
to continue with the next looping item immediately.
When a "continue" statement is interpreted, Python will skip the rest of the statement block of the nearest "for" or "while" loop, and continue with its next iteration.
For example:
>>> for num in range(2, 10):
... if num % 2 == 0:
... print("Found an even number "+str(num))
... continue
... print("Found a number "+str(num))
...
Found an even number 2
Found a number 3
Found an even number 4
Found a number 5
Found an even number 6
Found a number 7
Found an even number 8
Found a number 9
⇒ 'pass' - Do Nothing Statements
⇐ 'break' Statement in Repeating Statement Blocks
2017-09-12, ∼1890🔥, 0💬
Popular Posts:
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
Where to get the detailed description of the json_encode() Function in PHP? Here is the detailed des...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...