python中AttributeError異常的介紹
1、當你訪問一個對象的屬性,但是這個屬性沒有被這個對象定義時,導致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'
以上內容為大家介紹了python培訓之AttributeError異常的介紹,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。