How can you continue the parent loop of say two nested loops in Python?
continue
for a in b: for c in d: for e in f: if somecondi
use a boolean flag
problem = False for a in b: for c in d: if problem: continue for e in f: if somecondition: problem = True