Loop until condition is true

Remi Villatel maxilys at SPAMCOP_tele2.fr
Sat Jun 18 01:28:52 EDT 2005


Hi there,

There is always a "nice" way to do things in Python but this time I can't 
find one.

What I'm trying to achieve is a conditionnal loop of which the condition 
test would be done at the end so the loop is executed at least once. It's 
some way the opposite of "while".

So far, all I got is:

while True:
	some(code)
	if final_condition is True:
		break
	#
#

What I don't find so "nice" is to have to build an infinite loop only to 
break it.

Is there a better recipe?

-- 
==================
Remi Villatel
maxilys_ at _tele2.fr
==================



More information about the Python-list mailing list