码迷,mamicode.com
首页 > 其他好文 > 详细

异常处理:显示异常信息,程序继续运行

时间:2020-02-13 14:52:28      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:try   名称   图片   异常处理   com   mic   部分   ima   image   

此语句的作用是显示异常信息,便于调试和改进程序。

except Exception as err:

  print(err)

技术图片

 

#异常处理
‘‘‘
异常处理格式
try:
程序
except Exception as 异常名称:
异常处理部分
‘‘‘
try:
  for i in range(0,10):
  print(i)
  if(i==4):
    print(jkj)
  print("hello")
except Exception as err:
  print(err)


#让异常后的程序继续
for i in range(0,10):
try:
  print(i)
  if(i==4):
    print(jkj)
except Exception as err:
  print(err)

异常处理:显示异常信息,程序继续运行

标签:try   名称   图片   异常处理   com   mic   部分   ima   image   

原文地址:https://www.cnblogs.com/cutefox/p/12303278.html

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