Python學習 異常處理,自定義異常類

2021-06-06 21:17:20 字數 699 閱讀 2291

#!/usr/bin/python

# -*- coding: utf-8 -*-

# filename: usingexception.py

# 異常處理

# 寫乙個自己定義的異常類

class myinputexception(exception):

def __init__(self, length, least):

exception.__init__(self)

self.length = length

self.least = least

try:

s = raw_input('輸入乙個字串:')

# 如果長度小於5,觸發自定義的異常

if len(s) < 5:

raise myinputexception(len(s), 5)

except eoferror:

print '觸發了eof錯誤,按了ctrl+d'

except myinputexception, x:

print '輸入的字串只有%d,至少需要%d個字元' % (x.length, x.least)

except exception:

print '不知道什麼錯誤!'

finally:

print '有沒有異常都會執行這裡!'

異常處理 自定義異常

異常 1.定義 執行時檢測到的錯誤。2.現象 當異常發生時,程式不會再向下執行,而轉到函式的呼叫語句。3.常見異常型別 名稱異常 nameerror 變數未定義。型別異常 typeerror 不同型別資料進行運算。索引異常 indexerror 超出索引範圍。屬性異常 attributeerror ...

自定義異常處理

自定義異常處理類 using system using system.diagnostics 日誌記錄類 using system using system.configuration using system.diagnostics using system.io using system.tex...

自定義異常處理

煙台大學計算機學院學生 all right reserved.檔名稱 c 完成日期 2014年10月16日 版本號 v1.0 對任務及求解方法的描述部分 輸入兩個數,輸出其相除的結果,並進行增加乙個自定義異常類outofboundexception,我的程式 using system using s...