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可以选择while循环的else:子句.如果你不调用break,则会调用它,因此它们是等效的:
while condition: while second_condition: if condition1: break if condition1: continue do_something_if_no_break()
和:
while condition: while second_condition: if condition1: break else: do_something_if_no_break()总结
以上是内存溢出为你收集整理的python – 如何从内部循环中断到外部循环的开头全部内容,希望文章能够帮你解决python – 如何从内部循环中断到外部循环的开头所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)