Python之程序异常处理

代码

#Author Kang

try:
    name = [1,2,3]
    print(name[2])   
    print(name[3])   #代码发生错误,执行Expection
except Exception as e:    #抓取所有错误
    print("错误信息:",e)

结果:
3
错误信息: list index out of range

标题名称:Python之程序异常处理
网页URL:http://csdahua.cn/article/gsjhoe.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流