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
[EMAIL PROTECTED]
==================
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to