错误类型:AttributeError: 'list' object has no attribute 'xpath'
Posted wcymiracle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误类型:AttributeError: 'list' object has no attribute 'xpath'相关的知识,希望对你有一定的参考价值。
错误代码:
zoomE=html.xpath("//div[@id=‘Zoom‘]") cover=zoomE.xpath("//img/@src") print(cover)
zoomE是一个列表
正确代码:
zoomE=html.xpath("//div[@id=‘Zoom‘]")[0] cover=zoomE.xpath("//img/@src") print(cover)
以上是关于错误类型:AttributeError: 'list' object has no attribute 'xpath'的主要内容,如果未能解决你的问题,请参考以下文章
解决编码问题:AttributeError: 'str' object has no attribute 'decode'
AttributeError:类型对象'numpy.ndarray'在import numpy 1.15.4上没有属性'__array_function__'(示例代码
我遇到错误:AttributeError:'str'对象没有属性'isfloat'
python提示AttributeError: 'NoneType' object has no attribute 'append'
python提示AttributeError: 'NoneType' object has no attribute 'append'转发
python脚本AttributeError: module 'xxxx' has no attribute 'xxxxx'错误解决办法