Hi,
I wanted to know if there are any built-in ways to continue to next iteration in outer loop in python. For example, consider the code:
for ii in range(200):
for jj in range(200, 400):
...block0...
if something:
continue
...block1...
I want this continue statement to exit the jj loop and goto next item in the ii loop. I can implement this logic in someother way (by setting a flag variable), but is there an easy way to do this, or is this like asking for too much?
Thanks