G
Guest
suggest add do while loop in later version
suggest add do while loop in later version
Please also suggest a clean syntax for this.![]()
Please also suggest a clean syntax for this.![]()
Knowing Python, I suspect one would more often haveThis is from PEP 315, I don't like it, but it's more general:
do:
<setup code>
while <condition>:
<loop body>
I presume you end doing a lot of:
do:
# code
while <condition>:
pass
Is the loop body used often in this situation?
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.