代码编译后出现AttributeError: ‘NoneType’ object has no attribute 'text’错误 Traceback (most recent call last): File "E:/Python/src/sd.py", line 28, in <module> content=get_content(url) File "E:/Python/src/sd.py", line 12, in get_content content=texts.text.strip().split('\xa0...
AttributeError是Python中的一个异常,表示对象没有某个属性或方法。"nonetype"指的是NoneType,即空值。 要清除此AttributeError的"nonetype",需要先确定出现异常的具体位置。一般来说,出现此错误的原因可能是以下几种情况: 对象为None:在使用一个对象的属性或方法之前,需要确保该对象不为None。可以通过添加条件判断语句...
...most recent call last): File "", line 1, in x.remove(3) AttributeError: 'NoneType...不过,这种错误又比较明显,因为一般是'NoneType' object has no attribute...,这里的'NoneType'是个很好的提示。...集合不支持使用下标或键访问其中的元素。map、filter、enumerate、zip等对象也不支持使用下标...
此处出现了错误,显示第30行,也就是上方标红的语句“img = p.find("img")”,报错的原因是‘NoneType’ object has no attribute 'find', 意思就是获取到的数据是空类型,而空类型并没有find这个方法,所以无法执行。 纠错过程如下: 1.将源代码中的黄色语句,也就是“print(alist)”执行; 2.把for循环里面的...