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' #又報出了別的異常資訊
好吧!我們可以再加個異常的處理來處理這種情況:
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