How can you continue the parent loop of say two nested loops in Python?
for a in b:
for c in d:
for e in f:
if somecondition:
<continue the for a in b loop?>
I know you can avoid this in the majority of cases but can it be done in Python?
break? - Jon Clements♦breakto leave the inner loop - this'll immediately continue in the outer loop. - TyrantWave