AttributeError: 'function' object has no attribute 'HTML' 如何解决?

AttributeError: 'function' object has no attribute 'HTML'  如何解决?

代码如下

import requests

from lxml import etree

url="https://zhuzhou.zbj.com/search/f/?kw=数据分析"

response=requests.get(url)

#print(response.text)

#解析

html=etree.HTML(response.text)

divs=html.xpath("/html/body/div[6]/div/div/div[2]/div[5]/div[1]/div[1]/div")

for div in divs:

price=divs.xpath("./div/div/a[1]/div[2]/div[1]/span[1]")

print(price)

报这种错误,该如何解决???
AttributeError: 'function' object has no attribute 'HTML'

题目描述

题目来源及自己的思路

相关代码

粘贴代码文本(请勿用截图)

你期待的结果是什么?实际看到的错误信息又是什么?


回答:

用更好的html解析库pyquery

以上是 AttributeError: 'function' object has no attribute 'HTML' 如何解决? 的全部内容, 来源链接: utcz.com/p/937984.html

回到顶部