Python报错AttributeError: 'NoneType' object has no attribute 'append'

图片发自App

最近在做一项爬虫项目,无意中犯了一个小错误,如下图:

图片发自App

报错信息里就有了提示,列表新增元素时直接list.append()就好,本身是返回空值,所以就不可以赋值了。

如下所示:

x=[]

y=[45,44,60]

错误表达:x=x.append(y)

正确表达为:x.append(y)

你可能感兴趣的:(Python报错AttributeError: 'NoneType' object has no attribute 'append')