码迷,mamicode.com
首页 > 编程语言 > 详细

Python 小知识点(10)--异常结构记录

时间:2018-08-10 13:12:38      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:索引   pre   index   col   exception   except   span   cep   代码块   

try:
    print("try中")
except KeyError as e:
    # 异常时,执行该块
    print("异常中")
else:
    # 主代码块(try)执行完,执行该块
    print("try中正常执行后会来到else中")
finally:
    print("finally中")
    # 无论异常与否,最终执行该块
‘‘‘
(1)except KeyError as e: 键错误异常时,执行该块
   except IndexError as e:索引错误异常时,执行该块
   except Exception as e: 万能异常
(2)else:  try中正常执行后会来到else中
(3)finally:  无论异常与否,最终执行该块

‘‘‘

 

Python 小知识点(10)--异常结构记录

标签:索引   pre   index   col   exception   except   span   cep   代码块   

原文地址:https://www.cnblogs.com/bfwbfw/p/9454272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!