Conditional Expressions don't solve the problem

Andrew Dalke dalke at dalkescientific.com
Thu Oct 18 04:15:42 EDT 2001


Christopher A. Craig:
I wish Python had initially adopted
>
>  do:
>    <statements>
>    until <condition>
>    <statements>

I prefer this construct "spelled"

   do:
     <statements>
   until <condition>:
     <statements>

since it seems Pythonic that things which affect control flow
should involve an indent/dedent.

                    Andrew






More information about the Python-list mailing list