【发布时间】:2017-10-23 11:13:32
【问题描述】:
从内部循环中断的最佳方法是什么,以便我到达外部循环的开头
while condition:
while second_condition:
if some_condition_here:
get_to_the_beginning_of_first_loop
现在我得到了类似的东西
while condition:
while second_condition:
if condition1:
break
if condition1:
continue
【问题讨论】:
标签: python