python自定義異常及原理

2021-09-10 05:32:10 字數 549 閱讀 4620

(1) shortinputexception('短了。。。')這個物件繼承了exception類。

(2)raise了這個物件,被父類接收作為 e,

(3)print(e)預設呼叫e的__str__魔法方法。

注意,非自定義異常也是預設重寫了exception的__str__方法。

class shortinputexception(exception):

def __init__(self, msg):

self.msg = msg

def __str__(self):

return str(self.msg)

try:

print('zz')

raise shortinputexception('短了。。。')

except exception as e:

print(e)

結果:

python自定義異常

1 可以通過建立乙個新的exception類來擁有自己的異常。異常應該繼承自 exception 類,或者直接繼承,或者間接繼承。raise nameerror hithere traceback most recent call last file line 1,in module raise n...

python 自定義異常

try print num 直譯器執行 時,一旦發現錯誤,會根據錯誤型別自動建立乙個異常物件並且傳遞該異常物件 手動建立異常物件並且傳遞 丟擲 raise nameerror num未命名 except nameerror as error as error 就是將 捕獲到的異常物件 賦值給 err...

Python 自定義異常

這個自定義異常的案例裡面,有個關鍵字沒有做解釋。果斷google一下,raise的意思是丟擲指定的異常。其他的倒沒什麼,不過這種指定異常應該挺特殊的,但是沒有想到該在什麼場景使用。usr bin python coding gbk 自定義乙個異常 class shortinputexception ...