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
from itertools import product for a in b: for c, e in product(d, f): if somecondition: break