首页 > 代码库 > Python跳出多重循环的方法
Python跳出多重循环的方法
http://blog.csdn.net/churximi/article/details/51043595
方法1:自定义异常
# -*- coding:utf-8 -*- """ 功能:python跳出循环 """ # 方法1:自定义异常 class Getoutofloop(Exception): pass try: for i in range(5): for j in range(5): if i == j == 2: raise Getoutofloop() else: print i, ‘----‘, j except Getoutofloop: pass
方法2:将循环封装为函数,return
方法3:用for...else...语句
# -*- coding:utf-8 -*- """ 功能:python跳出循环 """ # 方法2:for...else...用法,用于跳出指定循环层 for i in range(5): for j in range(5): for k in range(5): if i == j == k == 3: break else: print i, ‘----‘, j, ‘----‘, k else: # else1 continue break # break1 else: # else2 continue break # break2
Python跳出多重循环的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。