Python3中例外處理和try/except,try/finally的用法

2020-08-08 13:43:47

1:Python3中例外處理介紹

在Python中當發生錯誤時,Python中的異常會自動觸發,異常也能由程式碼觸發和攔截,Python中有如下語句來觸發,處理異常:

a:try/except:攔截由Python或者自己的程式碼引起的異常並從中恢復。

很多人學習python,不知道從何學起。
很多人學習python,掌握了基本語法過後,不知道在哪裏尋找案例上手。
很多已經做案例的人,卻不知道如何去學習更加高深的知識。
那麼針對這三類人,我給大家提供一個好的學習平臺,免費領取視訊教學,電子書籍,以及課程的原始碼!
QQ羣:101677771

b:try/finally:無論異常是否發生,都會執行的程式碼。

c:raise:手動在程式碼中觸發異常。

d:assert:有條件在程式程式碼中觸發異常。

e:with/as:上下文管理器,try/finally的替代方案。

Python中異常的語法形式如下:

"""# 形式一:(方括號表示可選,星號表示0個或多個)try:    statementsexcept  [type [as value]]:    statements[except  [type [as value]]:    statements]*[else:    statements][finally:    statements]# 形式二:try:    statementsfinally:    statements"""

2:例外處理語句

2.1:try/except/else

捕獲指定的異常:

# encoding=gbkimport traceback def getValue(obj,index):    return obj[index] def test():     lst = ['123','456','abc']    try:        # ret = getValue(lst,2)        ret = getValue(lst,6)        print(ret)    except IndexError as e:        val = traceback.format_exc() # 獲取異常資訊        print(val)    else:        print('no Exception')  # 沒有異常就會執行到這裏      print('end call test!')  # 如果try下的語句引發了異常,並且在except中有匹配且終止了異常,那麼就會執行到這裏 if __name__ == '__main__':    test()

捕獲所有的異常:

# encoding=gbkimport traceback def getValue(obj,index):    return obj[index] def test():     lst = ['123','456','abc']    try:        # ret = getValue(lst,2)        ret = getValue(lst,6)        print(ret)    except IndexError as e: # 捕獲指定的異常        val = traceback.format_exc() # 獲取異常資訊        print(val)    except Exception:  # 捕獲所有的異常        val = traceback.format_exc()  # 獲取異常資訊        print(val)    else:        print('no Exception')  # 沒有異常就會執行到這裏      print('end call test!')  # 如果try下的語句引發了異常,並且在except中有匹配且終止了異常,那麼就會執行到這裏 if __name__ == '__main__':    test()

2.2:try/finally

# encoding=gbkimport traceback def getValue(obj,index):    return obj[index] def test():     lst = ['123','456','abc']    try:        # ret = getValue(lst,2)        ret = getValue(lst,'ss')        print(ret)    except IndexError as e:  # 捕獲指定的異常        val = traceback.format_exc() # 獲取異常資訊        print(val)    except Exception:  # 捕獲所有的異常        val = traceback.format_exc()  # 獲取異常資訊        print(val)    else:        print('no Exception')  # 沒有異常就會執行到這裏     finally:        print('in finally!')  # 不管是否有異常,都會執行到這裏     print('end call test!')  # 如果try下的語句引發了異常,並且在except中有匹配且終止了異常,那麼就會執行到這裏 if __name__ == '__main__':    test()

2.3:raise:引發異常

# encoding=gbkimport traceback def getValue(obj,index):    # return obj[index]    raise IndexError def test():     lst = ['123','456','abc']    try:        ret = getValue(lst,2)        # ret = getValue(lst,6)        print(ret)    except IndexError as e:  # 捕獲指定的異常        val = traceback.format_exc() # 獲取異常資訊        print(val)    except Exception:  # 捕獲所有的異常        val = traceback.format_exc()  # 獲取異常資訊        print(val)    else:        print('no Exception')  # 沒有異常就會執行到這裏     finally:        print('in finally!')  # 不管是否有異常,都會執行到這裏     print('end call test!')  # 如果try下的語句引發了異常,並且在except中有匹配且終止了異常,那麼就會執行到這裏 if __name__ == '__main__':    test()

2.4:with/as:上下文管理器

# encoding=gbk class Test:    def printInfo(self,arg):        print('in printInfo:',arg)     def __enter__(self):        print('in __enter__')        return self     def __exit__(self, exc_type, exc_val, exc_tb):        if exc_type is None:            print('exited normally\n')        else:            print('raise an exception! ' + str(exc_type) )            return False if __name__ == "__main__":    with Test() as t:        t.printInfo('test 1!')        print('test1')     print('*'*40)     with Test() as t:        t.printInfo('test 2!')        raise IndexError        print('test2')

3:Python中常見異常

異常名稱 描述
BaseException 所有異常的基礎類別
SystemExit 直譯器請求退出
KeyboardInterrupt 使用者中斷執行(通常是輸入^C)
Exception 常規錯誤的基礎類別
StopIteration 迭代器沒有更多的值
GeneratorExit 生成器(generator)發生異常來通知退出
StandardError 所有的內建標準異常的基礎類別
ArithmeticError 所有數值計算錯誤的基礎類別
FloatingPointError 浮點計算錯誤
OverflowError 數值運算超出最大限制
ZeroDivisionError 除(或取模)零 (所有數據型別)
AssertionError 斷言語句失敗
AttributeError 物件沒有這個屬性
EOFError 沒有內建輸入,到達EOF 標記
EnvironmentError 操作系統錯誤的基礎類別
IOError 輸入/輸出操作失敗
OSError 操作系統錯誤
WindowsError 系統呼叫失敗
ImportError 匯入模組/物件失敗
LookupError 無效數據查詢的基礎類別
IndexError 序列中沒有此索引(index)
KeyError 對映中沒有這個鍵
MemoryError 記憶體溢位錯誤(對於Python 直譯器不是致命的)
NameError 未宣告/初始化物件 (沒有屬性)
UnboundLocalError 存取未初始化的本地變數
ReferenceError 弱參照(Weak reference)試圖存取已經垃圾回收了的物件
RuntimeError 一般的執行時錯誤
NotImplementedError 尚未實現的方法
SyntaxError Python 語法錯誤
IndentationError 縮排錯誤
TabError Tab 和空格混用
SystemError 一般的直譯器系統錯誤
TypeError 對型別無效的操作
ValueError 傳入無效的參數
UnicodeError Unicode 相關的錯誤
UnicodeDecodeError Unicode 解碼時的錯誤
UnicodeEncodeError Unicode 編碼時錯誤
UnicodeTranslateError Unicode 轉換時錯誤
Warning 警告的基礎類別
DeprecationWarning 關於被棄用的特徵的警告
FutureWarning 關於構造將來語意會有改變的警告
OverflowWarning 舊的關於自動提升爲長整型(long)的警告
PendingDeprecationWarning 關於特性將會被廢棄的警告
RuntimeWarning 可疑的執行時行爲(runtime behavior)的警告
SyntaxWarning 可疑的語法的警告
UserWarning 使用者程式碼生成的警告