python异常大总结
当前位置:以往代写 > Python教程 >python异常大总结
2019-06-14

python异常大总结

python异常大总结

python用异常工具(exception object)来暗示异常环境。碰着错误后,会激发异常。假如异常工具并未被处理惩罚或捕获,措施就会用所谓的 回溯(Traceback, 一种错误信息)终止执行:

>>> 1/0

Traceback (most recent call last):

File "<pyshell#0>", line 1, in <module>

1/0

ZeroDivisionError: integer division or modulo by zero

raise 语句

为了激发异常,可以利用一个类(Exception的子类)可能实例参数数挪用raise 语句。下面的例子利用内建的Exception异常类:

>>> raise Exception    #激发一个没有任何错误信息的普通异常
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
raise Exception
Exception
>>> raise Exception('hyperdrive overload')   # 添加了一些异常错误信息
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
raise Exception('hyperdrive overload')
Exception: hyperdrive overload

系统自带的内建异常类:

>>> import exceptions

>>> dir(exceptions)

['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError', 'EnvironmentError', 'Exception', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError', 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '__doc__', '__name__', '__package__']

哇!许多几何,常用的内建异常类:

自界说异常

尽量内建的异常类已经包罗了大部门的环境,并且对付许多要求都已经足够了,但有些时候照旧需要建设本身的异常类。

和常见其它类一样—-只是要确保从Exception类担任,不管直接担任照旧间接担任。像下面这样:

>>> class someCustomExcetion(Exception):pass

虽然,也可觉得这个类添加一些要领。

捕获异常

我们可以利用 try/except 来实现异常的捕获处理惩罚。

假设建设了一个让用户输入两个数,然后举办相除的措施:

x = input('Enter the first number: ')
y = input('Enter the second number: ')
print x/y
#运行而且输入
Enter the first number: 10
Enter the second number: 0
Traceback (most recent call last):
File "I:/Python27/yichang", line 3, in <module>
print x/y
ZeroDivisionError: integer division or modulo by zero
为了捕获异常并做出一些错误处理惩罚,可以这样写:
try:
x = input('Enter the first number: ')
y = input('Enter the second number: ')
print x/y
except ZeroDivisionError:
  print "输入的数字不能为0!"
  
#再来运行
>>> 
Enter the first number: 10
Enter the second number: 0

输入的数字不能为0!           #怎么样?这次已经友好的多了

如果,我们在调试的时候激发异常会好些,假如在与用户的举办交互的进程中又是不但愿用户看到异常信息的。那如何开启/封锁 “屏蔽”机制?

class MuffledCalulator:
muffled = False   #这里默认封锁屏蔽
def calc(self,expr):
try:
return eval(expr)
except ZeroDivisionError:
if self.muffled:
print 'Divsion by zero is illagal'
else:
raise
#运行措施:
>>> calculator = MuffledCalulator()
>>> calculator.calc('10/2')
5
>>> calculator.clac('10/0')
Traceback (most recent call last):
File "<pyshell#30>", line 1, in <module>
calculator.clac('10/0')
AttributeError: MuffledCalulator instance has no attribute 'clac'   #异常信息被输出了
>>> calculator.muffled = True   #此刻打开屏蔽
>>> calculator.calc('10/0')
Divsion by zero is illagal

多个except 子句

假如运行上面的(输入两个数,求除法)措施,输入面的内容,就会发生别的一个异常:

try:
x = input('Enter the first number: ')
y = input('Enter the second number: ')
print x/y
except ZeroDivisionError:
  print "输入的数字不能为0!"
  
#运行输入:
>>> 
Enter the first number: 10
Enter the second number: 'hello.word'  #输入非数字
Traceback (most recent call last):
File "I:\Python27\yichang", line 4, in <module>
print x/y
TypeError: unsupported operand type(s) for /: 'int' and 'str'  #又报出了此外异常信息

#p#分页标题#e#

好吧!我们可以再加个异常的处理惩罚来处理惩罚这种环境:

try:
x = input('Enter the first number: ')
y = input('Enter the second number: ')
print x/y
except ZeroDivisionError:
print "输入的数字不能为0!"
except TypeError:           # 对字符的异常处理惩罚
  print "请输入数字!"
  
#再来运行:
>>> 
Enter the first number: 10
Enter the second number: 'hello,word'

请输入数字!

一个块捕获多个异常

我们虽然也可以用一个块来捕获多个异常:

try:
x = input('Enter the first number: ')
y = input('Enter the second number: ')
print x/y
except (ZeroDivisionError,TypeError,NameError):
print "你的数字差池!"

捕获全部异常

就算措施处理惩罚了好几种异常,好比上面的措施,运行之后,如果我输入了下面的内容呢

>>> 
Enter the first number: 10
Enter the second number:   #不输入任何内容,回车
Traceback (most recent call last):
File "I:\Python27\yichang", line 3, in <module>
y = input('Enter the second number: ')
File "<string>", line 0
^
SyntaxError: unexpected EOF while parsing

晕死~! 怎么办呢?总有被我们不小心忽略处理惩罚的环境,假如然想用一段代码捕获所有异常,那么可在except子句中忽略所有的异常类:

try:
x = input('Enter the first number: ')
y = input('Enter the second number: ')
print x/y
except:
print '有错误产生了!'
#再来输入一些内容看看
>>> 
Enter the first number: 'hello' * )0

有错误产生了!

竣事

别急!再来说说最后一个环境,好吧,用户不小心输入了错误的信息,能不能再给次时机输入?我们可以加个轮回,保你输对时才竣事:

while True:
try:
x = input('Enter the first number: ')
y = input('Enter the second number: ')
value = x/y
print 'x/y is',value
except:
print '列效输入,再来一次!'
#运行
>>> 
Enter the first number: 10
Enter the second number: 
列效输入,再来一次!
Enter the first number: 10
Enter the second number: 'hello'
列效输入,再来一次!
Enter the first number: 10
Enter the second number: 2
x/y is 5

    关键字:

在线提交作业