码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2018-05-28 11:41:11      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:txt   app   answer   ror   问题   脚本   obj   题解   并且   

在写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'

标签:txt   app   answer   ror   问题   脚本   obj   题解   并且   

原文地址:https://www.cnblogs.com/omg-hxy/p/9098596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!