python中AttributeError異常的介紹
1、當(dāng)你訪問一個對象的屬性,但是這個屬性沒有被這個對象定義時,導(dǎo)致AttributeError。
2、AttributeError的錯誤信息行告訴我們特定對象類型沒有訪問屬性。點擊文件鏈接可以快速定位到具體的錯誤代碼的位置。
實例
a_list=(1,2)
a_list.append(3)
運行之后拋出異常信息
Traceback(mostrecentcalllast):
File"/Users/chenxiangan/pythonproject/demo/exmpale.py",line2,in
a_list.append(3)
AttributeError:'tuple'objecthasnoattribute'append'
以上內(nèi)容為大家介紹了python培訓(xùn)之AttributeError異常的介紹,希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。