python提示AttributeError: 'NoneType' object has no attribute 'append'

在寫python腳本時遇到AttributeError: 'NoneType' object has no attribute 'append' a=[] b=[1,2,3,4] a = a.append(b) 執行一次後發現a的類型變爲了NoneType。 下次執行時就會出現如題所示的錯誤。 把a = a.append(b)改成a.append(b)後問題解決。 緣由:append會修改a自己
相關文章
相關標籤/搜索