Break out from multi-level loops
Not supported in Python. "If you feel the urge to do that, your code is probably too complex. Create functions!"
while external(): while internal(): if ...: break if ...: continue
Not supported in Python. "If you feel the urge to do that, your code is probably too complex. Create functions!"
while external(): while internal(): if ...: break if ...: continue