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
Looking at All the answers here its all different from how i do it\n Mission:continue to while loop if the if condition is true in nested loop
chars = 'loop|ing' x,i=10,0 while x>i: jump = False for a in chars: if(a = '|'): jump = True if(jump==True): continue