python提示AttributeError: 'NoneType' object has no attribute 'append'
Posted 小宇先森
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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本身,并且返回None。不能把返回值再赋值给a。
以上是关于python提示AttributeError: 'NoneType' object has no attribute 'append'的主要内容,如果未能解决你的问题,请参考以下文章
python报错提示 AttributeError: ‘bytes’ object has no attribute ‘encode’、
python提示错误“AttributeError: 'module' object has no attribute 'Tk'”是啥原因?
python报错提示AttributeError: 'QString' object has no attribute 'startswith'
python提示AttributeError: module 'random' has no attribute 'uniform'?
初学者 Python:AttributeError:'list' 对象没有属性
python输出有误,出现AttributeError: 'NoneType' object has no attribute 'startswith'