PEP-0315--Enhanced While Loop: An idea for an alternative syntax

Andrew Koenig ark at acm.org
Wed Feb 18 09:04:26 EST 2004


> I'm still scratching my head over that PEP.  Got a real-world code sample
> that it would improve?

Any loop that is currently written in the form

    while True:
        <statements>
        if condition:
            break
        more statements





More information about the Python-list mailing list