異常捕獲
呼叫棧
s1 = input("請輸入乙個字元:")
try:
int(s1)
except indexerror as e:
print(e)
except keyerror as e:
print(e)
except valueerror as e:
print(e)
s1 = input("請輸入乙個字元:")
try:
int(s1)
except exception as e:
print(e)
try:
pass # 主**塊
except keyerror as e:
pass # 出現該異常時執行
else:
pass # 主**塊執行完,執行該塊(若捕獲到異常,則不執行該句)
finally:
pass # 無論異常與否,最終執行該塊(不論try、except、else是否出現異常,該句都會執行)
s1 = input("請輸入乙個字元:")
try:
if len(s1) != 1:
raise exception(keyerror) # 丟擲keyerror異常
except exception as e: # 捕獲異常
print(e)
class myexception(exception):
def __init__(self, code, msg):
self.error_code = code
self.error_msg = msg
def __str__(self):
return self.error_code, self.error_msg
try:
raise myexception(3000, '自定義異常')
except myexception as e:
print(e.error_code, e.error_msg)
python異常處理 Python 異常處理
使用者輸入不完整 比如輸入為空 或者輸入非法 輸入不是數字 異常就是程式執行時發生錯誤的訊號,在python中,錯誤觸發的異常如下 在python中不同的異常可以用不同的型別 python中統一了類與型別,型別即類 去標識,不同的類物件標識不同的異常,乙個異常標識一種錯 觸發indexerror 觸...
python異常舉例 Python異常處理
1.1異常問題舉例 例一 i input 請輸入數字 請輸入數字 0 print i print 5 int i traceback most recent call last file line 1,in zerodivisionerror division by zero 上述 的報錯是除零的錯...
python異常處理
當你的程式中出現異常情況時就需要異常處理。比如當你開啟乙個不存在的檔案時。當你的程式中有一些無效的語句時,python會提示你有錯誤存在。下面是乙個拼寫錯誤的例子,print寫成了print。python是大小寫敏感的,因此python將引發乙個錯誤 print hello world file l...