Python 提供了兩個非常重要的功能來處理 Python 程序在運行中出現(xiàn)的異常和錯誤。你可以使用該功能來調(diào)試 Python 程序。
異常名稱 | 描述 |
---|---|
BaseException | 所有異常的基類 |
SystemExit | 解釋器請求退出 |
KeyboardInterrupt | 用戶中斷執(zhí)行(通常是輸入^C) |
Exception | 常規(guī)錯誤的基類 |
StopIteration | 迭代器沒有更多的值 |
GeneratorExit | 生成器 (generator) 發(fā)生異常來通知退出 |
StandardError | 所有的內(nèi)建標準異常的基類 |
ArithmeticError | 所有數(shù)值計算錯誤的基類 |
FloatingPointError | 浮點計算錯誤 |
OverflowError | 數(shù)值運算超出最大限制 |
ZeroDivisionError | 除(或取模)零 (所有數(shù)據(jù)類型) |
AssertionError | 斷言語句失敗 |
AttributeError | 對象沒有這個屬性 |
EOFError | 沒有內(nèi)建輸入,到達 EOF 標記 |
EnvironmentError | 操作系統(tǒng)錯誤的基類 |
IOError | 輸入/輸出操作失敗 |
OSError | 操作系統(tǒng)錯誤 |
WindowsError | 系統(tǒng)調(diào)用失敗 |
ImportError | 導入模塊/對象失敗 |
LookupError | 無效數(shù)據(jù)查詢的基類 |
IndexError | 序列中沒有此索引(index) |
KeyError | 映射中沒有這個鍵 |
MemoryError | 內(nèi)存溢出錯誤(對于 Python 解釋器不是致命的) |
NameError | 未聲明/初始化對象 (沒有屬性) |
UnboundLocalError | 訪問未初始化的本地變量 |
ReferenceError | 弱引用 (Weak reference) 試圖訪問已經(jīng)垃圾回收了的對象 |
RuntimeError | 一般的運行時錯誤 |
NotImplementedError | 尚未實現(xiàn)的方法 |
SyntaxError | Python 語法錯誤 |
IndentationError | 縮進錯誤 |
TabError | Tab 和空格混用 |
SystemError | 一般的解釋器系統(tǒng)錯誤 |
TypeError | 對類型無效的操作 |
ValueError | 傳入無效的參數(shù) |
UnicodeError | Unicode 相關的錯誤 |
UnicodeDecodeError | Unicode 解碼時的錯誤 |
UnicodeEncodeError | Unicode 編碼時錯誤 |
UnicodeTranslateError | Unicode 轉換時錯誤 |
Warning | 警告的基類 |
DeprecationWarning | 關于被棄用的特征的警告 |
FutureWarning | 關于構造將來語義會有改變的警告 |
OverflowWarning | 舊的關于自動提升為長整型 (long) 的警告 |
PendingDeprecationWarning | 關于特性將會被廢棄的警告 |
RuntimeWarning | 可疑的運行時行為 (runtime behavior) 的警告 |
SyntaxWarning | 可疑的語法的警告 |
UserWarning | 用戶代碼生成的警告 |
異常即是一個事件,該事件會在程序執(zhí)行過程中發(fā)生,影響了程序的正常執(zhí)行。
一般情況下,在 Python 無法正常處理程序時就會發(fā)生一個異常。
異常是 Python 對象,表示一個錯誤。
當 Python 腳本發(fā)生異常時我們需要捕獲處理它,否則程序會終止執(zhí)行。
捕捉異??梢允褂?try/except 語句。
try/except 語句用來檢測 try 語句塊中的錯誤,從而讓 except 語句捕獲異常信息并處理。
如果你不想在異常發(fā)生時結束你的程序,只需在 try 里捕獲它。
語法:
以下為簡單的 try....except...else 的語法:
try:
<語句> #運行別的代碼
except <名字>:
<語句> #如果在try部份引發(fā)了'名字'異常
except <名字>,<數(shù)據(jù)>:
<語句> #如果引發(fā)了'名字'異常,獲得附加的數(shù)據(jù)
else:
<語句> #如果沒有異常發(fā)生
try 的工作原理是,當開始一個 try 語句后,Python 就在當前程序的上下文中作標記,這樣當異常出現(xiàn)時就可以回到這里,try 子句先執(zhí)行,接下來會發(fā)生什么依賴于執(zhí)行時是否出現(xiàn)異常。
下面是簡單的例子,它打開一個文件,在該文件中的內(nèi)容寫入內(nèi)容,且并未發(fā)生異常:
#!/usr/bin/python
try:
fh = open("testfile", "w")
fh.write("This is my test file for exception handling!!")
except IOError:
print "Error: can\'t find file or read data"
else:
print "Written content in the file successfully"
fh.close()
以上程序輸出結果:
Written content in the file successfully
下面是簡單的例子,它打開一個文件,在該文件中的內(nèi)容寫入內(nèi)容,但文件沒有寫入權限,發(fā)生了異常:
#!/usr/bin/python
try:
fh = open("testfile", "w")
fh.write("This is my test file for exception handling!!")
except IOError:
print "Error: can\'t find file or read data"
else:
print "Written content in the file successfully"
以上程序輸出結果:
Error: can't find file or read data
你可以不帶任何異常類型使用except,如下實例:
try:
You do your operations here;
......................
except:
If there is any exception, then execute this block.
......................
else:
If there is no exception then execute this block.
以上方式try-except語句捕獲所有發(fā)生的異常。但這不是一個很好的方式,我們不能通過該程序識別出具體的異常信息。因為它捕獲所有的異常。
你也可以使用相同的 except 語句來處理多個異常信息,如下所示:
try:
You do your operations here;
......................
except(Exception1[, Exception2[,...ExceptionN]]]):
If there is any exception from the given exception list,
then execute this block.
......................
else:
If there is no exception then execute this block.
try-finally 語句無論是否發(fā)生異常都將執(zhí)行最后的代碼。
try:
<語句>
finally:
<語句> #退出try時總會執(zhí)行
raise
注意:你可以使用 except 語句或者 finally 語句,但是兩者不能同時使用。else 語句也不能與 finally 語句同時使用
#!/usr/bin/python
try:
fh = open("testfile", "w")
fh.write("This is my test file for exception handling!!")
finally:
print "Error: can\'t find file or read data"
如果打開的文件沒有可寫權限,輸出如下所示:
Error: can't find file or read data
同樣的例子也可以寫成如下方式:
#!/usr/bin/python
try:
fh = open("testfile", "w")
try:
fh.write("This is my test file for exception handling!!")
finally:
print "Going to close the file"
fh.close()
except IOError:
print "Error: can\'t find file or read data"
當在 try 塊中拋出一個異常,立即執(zhí)行 finally 塊代碼。
finally 塊中的所有語句執(zhí)行后,異常被再次提出,并執(zhí)行 except 塊代碼。
參數(shù)的內(nèi)容不同于異常。
一個異??梢詭蠀?shù),可作為輸出的異常信息參數(shù)。
你可以通過 except 語句來捕獲異常的參數(shù),如下所示:
try:
You do your operations here;
......................
except ExceptionType, Argument:
You can print value of Argument here...
變量接收的異常值通常包含在異常的語句中。在元組的表單中變量可以接收一個或者多個值。
元組通常包含錯誤字符串,錯誤數(shù)字,錯誤位置。
以下為單個異常的實例:
#!/usr/bin/python
# 定義函數(shù)
def temp_convert(var):
try:
return int(var)
except ValueError, Argument:
print "The argument does not contain numbers\n", Argument
# 調(diào)用函數(shù)
temp_convert("xyz");
以上程序執(zhí)行結果如下:
The argument does not contain numbers
invalid literal for int() with base 10: 'xyz'
我們可以使用 raise 語句自己觸發(fā)異常
raise 語法格式如下:
raise [Exception [, args [, traceback]]]
語句中 Exception 是異常的類型(例如,NameError)參數(shù)是一個異常參數(shù)值。該參數(shù)是可選的,如果不提供,異常的參數(shù)是"None"。
最后一個參數(shù)是可選的(在實踐中很少使用),如果存在,是跟蹤異常對象。
一個異??梢允且粋€字符串,類或對象。 Python 的內(nèi)核提供的異常,大多數(shù)都是實例化的類,這是一個類的實例的參數(shù)。
定義一個異常非常簡單,如下所示:
def functionName( level ):
if level < 1:
raise Exception("Invalid level!", level)
# 觸發(fā)異常后,后面的代碼就不會再執(zhí)行
注意:為了能夠捕獲異常,"except"語句必須有用相同的異常來拋出類對象或者字符串。
例如我們捕獲以上異常,"except"語句如下所示:
try:
Business Logic here...
except "Invalid level!":
Exception handling here...
else:
Rest of the code here...
通過創(chuàng)建一個新的異常類,程序可以命名它們自己的異常。異常應該是典型的繼承自 Exception 類,通過直接或間接的方式。
以下為與 RuntimeError 相關的實例,實例中創(chuàng)建了一個類,基類為 RuntimeError,用于在異常觸發(fā)時輸出更多的信息。
在 try 語句塊中,用戶自定義的異常后執(zhí)行 except 塊語句,變量 e 是用于創(chuàng)建 Networkerror 類的實例。
class Networkerror(RuntimeError):
def __init__(self, arg):
self.args = arg
在你定義以上類后,你可以觸發(fā)該異常,如下所示:
try:
raise Networkerror("Bad hostname")
except Networkerror,e:
print e.args
異常處理代碼執(zhí)行說明:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
#This is note foe exception
try:
code #需要判斷是否會拋出異常的代碼,如果沒有異常處理,python會直接停止執(zhí)行程序
except: #這里會捕捉到上面代碼中的異常,并根據(jù)異常拋出異常處理信息
#except ExceptionName,args: #同時也可以接受異常名稱和參數(shù),針對不同形式的異常做處理
code #這里執(zhí)行異常處理的相關代碼,打印輸出等
else: #如果沒有異常則執(zhí)行else
code #try部分被正常執(zhí)行后執(zhí)行的代碼
finally:
code #退出try語句塊總會執(zhí)行的程序
#函數(shù)中做異常檢測
def try_exception(num):
try:
return int(num)
except ValueError,arg:
print arg,"is not a number"
else:
print "this is a number inputs"
try_exception('xxx')
#輸出異常值
Invalide literal for int() with base 10: 'xxx' is not a number
更多建議: