答案 0 :(得分:2)
使用自定义例外进行爆发。
class ExitLoop(Exception):
pass
try:
while True:
while other:
raise ExitLoop()
except ExitLoop:
exit()
答案 1 :(得分:1)
设置标志而不是破坏内部循环。如果设置了标志,则在外循环中断。
flag = False
while True:
if flag:
break
while otherCondition:
try:
flag = True
except ValueError:
print('oops')