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, ∼2664🔥, 0💬
Popular Posts:
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to convert a JSON text string to an XML document with PHP language? Currently, there is no built...
How to use the "@(...)" expression in Azure API Policy? The "@(...)" expression in Azure API Policy ...