Good python equivalent to C goto

Kurien Mathew kmathew at envivio.fr
Sat Aug 16 17:20:52 EDT 2008


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;
  }



Thanks
Kurien



More information about the Python-list mailing list