python用異常物件(exception object)來表示異常狀況。遇到錯誤後,會引發異常。如果異常物件並未被處理或捕捉,程式就會用所謂的回溯(Traceback, 一種錯誤訊息)終止執行:
>>> 1/0
Traceback (most recent call last):
File "
1/0
ZeroDivisionError: integer division or modulo by zero
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(exceptor> 'AssertionError', 'AttributeError', 'BaseException', 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError', 'EnvironmentError', 'Exception', 'FloatingPoint,'Error', 'EnvironmentError', 'Exception', 'FloatingPoint,'Error', 'Gentures'Fluninga'IO, 'Error'IO, 'Gen ', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'NotImplementedError', 'MemoryError', 'NameError', 'NotImplementedError', 'Error' 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError', 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'Systemup ', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZerovisionError', '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' #又报出了别的异常信息請輸入數字! 一個塊捕捉多個異常我們當然也可以用一個塊來捕捉多個異常:
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 "你的数字不对!暈死~! 怎麼辦呢?那麼可在except子句中忽略所有的異常類別:
>>> 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有錯誤發生了! 結束別急!訊息,能不能再給次機會輸入?