首頁 > 軟體

python巢狀try...except如何使用詳解

2022-08-16 14:02:44

引言

眾所周知,在python中我們用try…except…來捕獲異常,使用raise來丟擲異常,但是多重的try…except…是如何使用的呢

前提

丟擲異常

當呼叫raise進行丟擲錯誤的時候,丟擲錯誤的後面的程式碼不執行

def func():
    print("hello")
    raise Exception("出現了錯誤")
    print("world")

func()

列印的錯誤堆疊

如果抓取錯誤,就相當於if...else,並不會打斷程式碼的執行

def func():
    try:
        print("hello")
        raise Exception("出現了錯誤")
    except Exception as why:
        print(why)
        print("world")

func()

自定義異常

自定義異常需要我們繼承異常的類,包括一些框架中的異常的類,我們自定義異常的話都需要繼承他們

class MyError(Exception):
    pass

def say_hello(str):
    if str != "hello":
        raise MyError("傳入的字串不是hello")
    print("hello")

say_hello("world")

異常物件

  • Exception 是多有異常的父類別,他會捕獲所有的異常
  • 其後面會跟一個as as後面的變數就是異常物件,異常物件是異常類範例化後得到的

多重try

如果是巢狀的try...except...的話,這一層raise的錯誤,會被上一層的try...except...進行捕獲

補充:捕獲異常的小方法

方法一:捕獲所有異常

a=10
b=0
try:
    print (a/b)
except Exception as e:
    print(Exception,":",e)
finally:
    print ("always excute")

執行:

<class 'Exception'> : division by zero
always excute

方法二:採用traceback模組檢視異常

import traceback   
try:
    print ('here1:',5/2)
    print ('here2:',10/5)
    print ('here3:',10/0)
    
except Exception as e:
    traceback.print_exc()

執行:

here1: 2.5
here2: 2.0
Traceback (most recent call last):
  File "/Users/lilong/Desktop/online_release/try_except_use.py", line 59, in <module>
    print ('here3:',10/0)
ZeroDivisionError: division by zero

方法三:採用sys模組回溯最後的異常

import sys   
try:
    print ('here1:',5/2)
    print ('here2:',10/5)
    print ('here3:',10/0)
    
except Exception as e:
    info=sys.exc_info()  
    print (info[0],":",info[1])

執行:

here1: 2.5
here2: 2.0
<class 'ZeroDivisionError'> : division by zero

注意:萬能異常Exception

被檢測的程式碼塊丟擲的異常有多種可能性,並且我們針對所有的異常型別都只用一種處理邏輯就可以了,那就使用Exception,除非要對每一特殊異常進行特殊處理。

總結

到此這篇關於python巢狀try...except如何使用的文章就介紹到這了,更多相關python巢狀try...except使用內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com