python异常处理详解

转自:https://www.weidianyuedu.com/

1、什么是异常

Python中用异常对象来表示异常情况。程序在运行期间遇到错误后会引发异常。如果异常对象并未被处理或捕获,程序就会回溯终止执行。

2、抛出异常

raise语句,raise后面跟上Exception异常类或者Exception的子类,还可以在Exception的括号中加入异常的信息。

raise Exception(‘message’)

注意:Exception类是所有异常类的基类,我们还可以根据该类创建自己定义的异常类,如下:

class SomeCustomException(Exception): pass

3、捕捉异常(try/except语句)

try/except语句用来检测try语句块中的错误,从而让except语句捕获异常信息并处理。

一个try语句块中可以抛出多个异常:

try:
x= input('Enter the first number: ')
y= input('Enter the second number: ')
print x/y
except ZeroDivisionError:
print “The second number can’t be zero!”
except TypeError:
print “That wasn’t a number, was it?”

一个except语句可以捕获多个异常:

try:
x= input('Enter the first number: ')
y= input('Enter the second number: ')
print x/y
except (ZeroDivisionError, TypeError, NameError): #注意except语句后面的小括号
print ‘Your numbers were bogus…’
访问捕捉到的异常对象并将异常信息打印输出:

try:
x= input('Enter the first number: ')
y= input('Enter the second number: ')
print x/y
except (ZeroDivisionError, TypeError), e:
print e
捕捉全部异常,防止漏掉无法预测的异常情况:

try:
x= input('Enter the first number: ')
y= input('Enter the second number: ')
print x/y
except :
print ‘Someting wrong happened…’

4、else子句。除了使用except子句,还可以使用else子句,如果try块中没有引发异常,else子句就会被执行。

while 1:
try:
x= input('Enter the first number: ')
y= input('Enter the second number: ')
value= x/y
print ‘x/y is’, value
except:
print ‘Invalid input. Please try again.’
else:
break

上面代码块运行后用户输入的x、y值合法的情况下将执行else子句,从而让程序退出执行。

5、finally子句。不论try子句中是否发生异常情况,finally子句肯定会被执行,也可以和else子句一起使用。finally子句常用在程序的最后关闭文件或网络套接字。https://www.weidianyuedu.com/

try:
1/0
except:
print ‘Unknow variable’
else:
print ‘That went well’
finally:
print ‘Cleaning up’
6、异常和函数

如果异常在函数内引发而不被处理,它就会传递到函数调用的地方,如果一直不被处理,异常会传递到主程序,以堆栈跟踪的形式终止。

def faulty():
raise Exception(‘Someting is wrong!’)
def ignore_exception():
faulty()

def handle_exception():
try:
faulty()
except Exception, e:
print ‘Exception handled!’,e

handle_exception()
ignore_exception()
在上面的代码块中,函数handle_exception()在调用faulty()后,faulty()函数抛出异常并被传递到handle_exception()中,从而被try/except语句处理。而ignare_exception()函数中没有对faulty()做异常处理,从而引发异常的堆栈跟踪。

注意:条件语句if/esle可以实现和异常处理同样的功能,但是条件语句可能在自然性和可读性上差一些。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值