python try except返回異常的信息字符串代碼實(shí)例
問(wèn)題
https://docs.python.org/3/tutorial/errors.html#handling-exceptions
https://docs.python.org/3/library/exceptions.html#ValueError
try: int("x") except Exception as e: '''異常的父類(lèi),可以捕獲所有的異常''' print(e) # e變量是Exception類(lèi)型的實(shí)例,支持__str__()方法,可以直接打印。 invalid literal for int() with base 10: 'x' try: int("x") except Exception as e: '''異常的父類(lèi),可以捕獲所有的異常''' print(e.args)
# e變量有個(gè)屬性是.args,它是錯(cuò)誤信息的元組
("invalid literal for int() with base 10: 'x'",)try: datetime(2017,2,30)except ValueError as e: print(e) day is out of range for monthtry: datetime(22017,2,30)except ValueError as e: print(e) year 22017 is out of rangetry: datetime(2017,22,30)except ValueError as e: print(e) month must be in 1..12e = Nonetry: datetime(2017,22,30)except ValueError as e: print(e) month must be in 1..12e # e這個(gè)變量在異常過(guò)程結(jié)束后即被釋放,再調(diào)用也無(wú)效 Traceback (most recent call last): File "<input>", line 1, in <module>NameError: name 'e' is not defined
errarg = None try: datetime(2017,22,30) except ValueError as errarg: print(errarg) month must be in 1..12 errarg Traceback (most recent call last): File "<input>", line 1, in <module> NameError: name 'errarg' is not defined try: datetime(2017,22,30) except ValueError as errarg: print(errarg.args) # ValueError.args 返回元組 ('month must be in 1..12',) message = None try: datetime(2017,22,30) except ValueError as errarg: print(errarg.args) message = errarg.args ('month must be in 1..12',) message ('month must be in 1..12',) try: datetime(2017,22,30) except ValueError as errarg: print(errarg.args) message = errarg ('month must be in 1..12',) message ValueError('month must be in 1..12',) str(message) 'month must be in 1..12'
分析異常信息,并根據(jù)異常信息的提示做出相應(yīng)處理:
try: y = 2017 m = 22 d = 30 datetime(y,m,d) except ValueError as errarg: print(errarg.args) message = errarg m = re.search(u"month", str(message)) if m: dt = datetime(y,1,d) ('month must be in 1..12',) dt datetime.datetime(2017, 1, 30, 0, 0)
甚至可以再except中進(jìn)行遞歸調(diào)用:
def validatedate(y, mo, d): dt = None try: dt = datetime(y, mo, d) except ValueError as e: print(e.args) print(str(y)+str(mo)+str(d)) message = e ma = re.search(u"^(year)|(month)|(day)", str(message)) ymd = ma.groups() if ymd[0]: dt = validatedate(datetime.now().year, mo, d) if ymd[1]: dt = validatedate(y, datetime.now().month, d) if ymd[2]: dt = validatedate(y, mo, datetime.now().day) finally: return dt validatedate(20199, 16, 33) ('year 20199 is out of range',) ('month must be in 1..12',) ('day is out of range for month',) datetime.datetime(2018, 4, 20, 0, 0)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Python+Redis實(shí)現(xiàn)布隆過(guò)濾器
布隆過(guò)濾器(Bloom Filter)是1970年由布隆提出的。它實(shí)際上是一個(gè)很長(zhǎng)的二進(jìn)制向量和一系列隨機(jī)映射函數(shù)。這篇文章主要介紹了Python+Redis實(shí)現(xiàn)布隆過(guò)濾器,需要的朋友可以參考下2019-12-12Python實(shí)現(xiàn)用戶(hù)名和密碼登錄
這篇文章主要為大家詳細(xì)介紹了Python實(shí)現(xiàn)用戶(hù)名和密碼登錄,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-02-02Python GUI編程學(xué)習(xí)筆記之tkinter事件綁定操作詳解
這篇文章主要介紹了Python GUI編程學(xué)習(xí)筆記之tkinter事件綁定操作,結(jié)合實(shí)例形式分析了Python GUI編程tkinter事件綁定常見(jiàn)操作技巧與使用注意事項(xiàng),需要的朋友可以參考下2020-03-03一篇文章帶你搞懂Python類(lèi)的相關(guān)知識(shí)
今天我們要說(shuō)的是面向?qū)ο蟮暮诵?----類(lèi),類(lèi)能幫我們把復(fù)雜的事情變得有條理,有順序,希望大家通過(guò)學(xué)習(xí)類(lèi)能改善自己的編碼風(fēng)格,使代碼變得更為好看,更加通俗易懂,需要的朋友可以參考下2021-05-05python爬蟲(chóng)selenium和phantomJs使用方法解析
這篇文章主要介紹了python爬蟲(chóng)selenium和phantomJs使用方法解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-08-08Python的3種運(yùn)行方式:命令行窗口、Python解釋器、IDLE的實(shí)現(xiàn)
這篇文章主要介紹了Python的3種運(yùn)行方式:命令行窗口、Python解釋器、IDLE的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2020-10-10