python常用异常处理
2019獨角獸企業重金招聘Python工程師標準>>>
python本身的異常處理是非常友好的
把你期望正常運行的代碼放入到try中在用except捕獲你認為意外的錯誤再執行相應的處理
try:pass except Exception as err:print(err)如
期望值是int類型:
s1 = 'hello' try:int(s1) except ValueError as err:print(err)期待的key不存在:
dic = {'k1':'v1'} try:dic['k20'] except KeyError as err:print(err)超出索引范圍:
dic = ["wupeiqi", 'alex'] try:dic[10] except IndexError as err:print(err)常用錯誤異常:
AttributeError ? ?? ? ? ? ?試圖訪問一個對象沒有的樹形,比如foo.x,但是foo沒有屬性x
IOError ????????????????? ? ?輸入/輸出異常;基本上是無法打開文件
ImportError ????????? ? ? ?無法引入模塊或包;基本上是路徑問題或名稱錯誤
IndentationError ? ? ? ? ?語法錯誤(的子類) ;代碼沒有正確對齊
IndexError ?????????????????下標索引超出序列邊界,比如當x只有三個元素,卻試圖訪問x[5]
KeyError ???????????????????試圖訪問字典里不存在的鍵
KeyboardInterrupt ??????Ctrl+C被按下
NameError ????????????????使用一個還未被賦予對象的變量
SyntaxError ???????????????Python代碼非法,代碼不能編譯(個人認為這是語法錯誤,寫錯了)
TypeError ?????????????????傳入對象類型與要求的不符合
UnboundLocalError ????試圖訪問一個還未被設置的局部變量,基本上是由于另有一個同名的全局變量,導致你以為正在訪問它
ValueError ????????????????傳入一個調用者不期望的值,即使值的類型是正確的
其他異常:
ArithmeticError
AssertionError
AttributeError
BaseException
BufferError
BytesWarning
DeprecationWarning
EnvironmentError
EOFError
Exception
FloatingPointError
FutureWarning
GeneratorExit
ImportError
ImportWarning
IndentationError
IndexError
IOError
KeyboardInterrupt
KeyError
LookupError
MemoryError
NameError
NotImplementedError
OSError
OverflowError
PendingDeprecationWarning
ReferenceError
RuntimeError
RuntimeWarning
StandardError
StopIteration
SyntaxError
SyntaxWarning
SystemError
SystemExit
TabError
TypeError
UnboundLocalError
UnicodeDecodeError
UnicodeEncodeError
UnicodeError
UnicodeTranslateError
UnicodeWarning
UserWarning
ValueError
Warning
ZeroDivisionError
完整的異常處理結構
try:# 主代碼塊pass except KeyError,e:# 異常時,執行該塊pass else:# 主代碼塊執行完,執行該塊pass finally:# 無論異常與否,最終執行該塊pass主動拋出異常
try:raise Exception('錯誤了。。。') except Exception as err:print(err)自定義異常
class SelfException(Exception):def __init__(self, msg):self.message = msgdef __str__(self):return self.messagetry:raise SelfException('我的異常') except SelfException as e:print(e)?
對于必須出現我期望值的處理還有一種斷言的方式,如果結果為false則拋出錯誤
python?assert語法
例:
assert 1==1 assert 2+2==2*2 assert len(['my boy',12])<10 assert range(4)==[0,1,2,3]assert其實還有第二個參數assert expression [, arguments] ,第二個參數為拋出的錯誤信息
如:
assert 2==1,'2不等于1'?
轉載于:https://my.oschina.net/u/3640109/blog/3032982
總結
以上是生活随笔為你收集整理的python常用异常处理的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 快看漫画大数据平台的模型思维与用户增长实
- 下一篇: 内部类调用相同属性同名时的调用细节