What's the best way to break from inner loop so I reach beginning of the outer loop
while condition:
while second_condition:
if some_condition_here:
get_to_the_beginning_of_first_loop
Right now I got something like
while condition:
while second_condition:
if condition1:
break
if condition1:
continue