Tools, FAQ, Tutorials:
'break' Statement in Repeating Statement Blocks
How to use the "break" statement in a repeating statement block in Python code?
✍: FYIcenter.com
The "break" statement can be used in a repeating statement block like "for" and "while" loops
to terminate the loop immediately.
When a "break" statement is interpreted, Python will terminate execution of the nearest "for" or "while" loop, and skip its optional "else" statement block.
For example:
>>> for n in range(2, 10): ... for x in range(2, n): ... if n % x == 0: ... print(str(n)+' equals '+str(x)+' * '+str(n/x)) ... break ... else: ... print(str(n)+' is a prime number') ... 2 is a prime number 3 is a prime number 4 equals 2 * 2.0 5 is a prime number 6 equals 2 * 3.0 7 is a prime number 8 equals 2 * 4.0 9 equals 3 * 3.0
⇒ 'continue' Statement in Repeating Statement Blocks
⇐ 'while ... else' Repeating Statement Blocks
2018-02-28, 1551🔥, 0💬
Popular Posts:
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer in...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
Can You Add Values to an Array without Keys in PHP? Can You Add Values to an Array with a Key? The a...