首页 > 移动平台 > 详细

Python问题——AttributeError: 'NoneType' object has no attribute 'append'

时间:2019-08-01 00:26:49      阅读:134      评论:0      收藏:0      [点我收藏+]

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

 

 

Python问题——AttributeError: ‘NoneType‘ object has no attribute ‘append‘

f=open("data.csv")
for line in f:
line = line.strip("\n")
ls = line.split(",")
lt=[]
for word in ls:
word=word.strip()
lt=lt.append(word)

print(",".join(lt))
f.close()


把lt= lt.append(word)改为lt.append(word)后问题解决。

原因:append会修改a本身,并且返回None。不能把返回值再赋值给a。

Python问题——AttributeError: 'NoneType' object has no attribute 'append'

原文:https://www.cnblogs.com/oycc2000/p/11279677.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!