标签:python的异常处理
比如如下列子:
>>> s = raw_input(‘Enter something -->‘)
Enter something -->Traceback (most recent call last):
File "<stdin>", line 1, in ?
EOFError
按Ctrl-d,Python引发了一个称为EOFError的错误,这个错误基本上意味着它发现一个不期望的 文件尾 (由Ctrl-d表示)
1、try..except
可以使用try..except语句来处理异常。把通常的语句放在try-块中,而把我们的错误处理语句放在except-块中。
处理异常:
#!/usr/bin/python
# Filename: try_except.py
import sys
try:
s = raw_input(‘Enter something -->‘)
except EOFError:
print ‘\nWhy did you do an EOF on me?‘
except:
print ‘\nSome error/exception occurred.‘
# here,we are not exiting the program
print ‘Done‘
把所有可能引发错误的语句放在try块中,然后在except从句/块中处理所有的错误和异常。except从句可以专门处理单一的错误或异常,或者一组包括在圆括号内的错误/异常。如果没有给出错误或异常的名称,它会处理 所有的 错误和异常。对于每个try从句,至少都有一个相关联的except从句。
如果某个错误或异常没有被处理,默认的Python处理器就会被调用。它会终止程序的运行,并且打印一个消息,我们已经看到了这样的处理。
还可以让try..catch块关联上一个else从句。当没有异常发生的时候,else从句将被执行。
我们还可以得到异常对象,从而获取更多有个这个异常的信息。
2、引发异常
可以使用raise语句 引发 异常。你还得指明错误/异常的名称和伴随异常 触发的 异常对象。你可以引发的错误或异常应该分别是一个Error或Exception类的直接或间接导出类。
#!/usr/bin/python
# Filename: raising.py
class ShortInputException(Exception):
‘‘‘A user-defined exception class.‘‘‘
def __init__(self,length,atleast):
Exception.__init__(self)
self.length = length
self.atleast = atleast
try:
s = raw_input(‘Enter something -->‘)
if len(s) < 3:
raise ShortInputException(len(s),3)
# Other work can continue as usual here
except EOFError:
print ‘\nWhy did you do an EOF on me?‘
except ShortInputException,x:
print ‘ShortInputException: The input was of length %d, \
was excepting at least %d‘ % (x.length,x.atleast)
else:
print ‘No exception was raised.‘
[root@gflinux102 code]# python raising.py
Enter something -->
Why did you do an EOF on me?
[root@gflinux102 code]# python raising.py
Enter something -->bb
ShortInputException: The input was of length 2, was excepting at least 3
[root@gflinux102 code]# python raising.py
Enter something -->dfdf
No exception was raised.
创建了我们自己的异常类型,其实我们可以使用任何预定义的异常/错误。这个新的异常类型是ShortInputException类。它有两个域——length是给定输入的长度,atleast则是程序期望的最小长度。
在except从句中,我们提供了错误类和用来表示错误/异常对象的变量。这与函数调用中的形参和实参概念类似。在这个特别的except从句中,我们使用异常对象的length和atleast域来为用户打印一个恰当的消息。
3、try..finally
假如你在读一个文件的时候,希望在无论异常发生与否的情况下都关闭文件,该怎么做呢?这可以使用finally块来完成。注意,在一个try块下,你可以同时使用except从句和finally块。如果你要同时使用它们的话,需要把一个嵌入另外一个。
使用finally:
#!/usr/bin/python
# Filename: finally.py
import time
try:
f = file(‘poem.txt‘)
while True: # Our usual file-reading idiom
line = f.readline()
if len(line) == 0:
break
time.sleep(2)
print line,
finally:
f.close()
print ‘Cleaning up...closed the file‘
[root@gflinux102 code]# python finally.py
Programming is fun
When the work is done
if you wanna make your work also fun:
Cleaning up...closed the file
Traceback (most recent call last):
File "finally.py", line 10, in ?
time.sleep(2)
KeyboardInterrupt
在每打印一行之前用time.sleep方法暂停2秒钟。这样做的原因是让程序运行得慢一些(Python由于其本质通常运行得很快)。在程序运行的时候,按Ctrl-c中断/取消
可以观察到KeyboardInterrupt异常被触发,程序退出。但是在程序退出之前,finally从句仍然被执行,把文件关闭。
标签:python的异常处理
原文地址:http://gfsunny.blog.51cto.com/990565/1612321