try\except\finally
標準內建except error:
(1)使用標準except輸出error。finally語句一定會執行,引發異常後會跳出try語句繼續執行下面**。
# -*- coding: utf-8 -*-
import traceback
flag=true
file = "c:\\users\\rsgis201-4\\desktop\\test1.csv"
while flag:
try:
flag = false
f = open(file)
print f
assert 1==2
except ioerror,argument:
print argument
file = "c:\\users\\rsgis201-4\\desktop\\test.csv"
flag=true
#使用traceback將錯誤資訊輸出到控制台和txt
traceback.print_exc()
f0 = open("c:\\users\\rsgis201-4\\desktop\\1.txt", 'a')
traceback.print_exc(file=f0)
f0.flush()
f0.close()
# 使用logging將錯誤資訊輸出到控制台和txt
except assertionerror :
print "assertionerror"
finally:
print "先執行finay還是exce"
(2)自定義except。所有異常的基類都是baseexception.
class toolongexceptin(): #自定義異常
"this is user's exception for check the length of name "
def __init__(self, leng):
self.leng = leng
def __str__(self):
return "姓名長度是" + str(self.leng) + ",超過長度了"
name="dsvbailf"
try:
if len(name) > 4:
raise toolongexceptin(len(name)) #自定義丟擲異常
print "why?"
except toolongexceptin,b: #捕捉異常
print b ##btoolongexceptin的例項,print 會自動呼叫 __str__函式。
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...