Good python equivalent to C goto
Robin Becker
robin at reportlab.com
Mon Aug 18 10:39:33 EDT 2008
Kurien Mathew wrote:
> Hello,
>
> Any suggestions on a good python equivalent for the following C code:
>
> while (loopCondition)
> {
> if (condition1)
> goto next;
> if (condition2)
> goto next;
> if (condition3)
> goto next;
> stmt1;
> stmt2;
> next:
> stmt3;
> stmt4;
> }
>
such a pity that the goto module
http://mail.python.org/pipermail/python-announce-list/2004-April/002982.html
never got into core python :)
--
Robin Becker
More information about the Python-list
mailing list