Tools, FAQ, Tutorials:
'while ... else' Repeating Statement Blocks
How to enter "while ... else" statement blocks in Python code?
✍: FYIcenter.com
"while ... else" statement blocks allow you to execute the main statement block repeatedly.
When "while ... else" statement blocks are interpreted, the "while" statement block will be executed repeatedly until the given condition returns False. Then, the "else" statement block is executed once.
"while ... else" statement blocks can be entered in Python code using the following syntax:
while condition:
statement-block
else :
statement-block
For example:
>>> sum = 0
>>> count = 1
>>> while count <= 10:
... sum = sum + count
... count = count + 1
... else:
... print("Sum: "+str(sum))
... print("Count: "+str(count))
...
Sum: 55
Count: 11
⇒ 'break' Statement in Repeating Statement Blocks
⇐ 'for ... in' Statement with List of Tuples
2018-02-28, ∼3165🔥, 0💬
Popular Posts:
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
How to validate the id_token signature received from Azure AD v2.0 authentication response? You can ...