AttributeError: module 'xml.etree' has no attribute 'html'
时间: 2024-01-23 13:16:04 浏览: 254
利用lxml库的etree模块进行HTML网页标签内容提取
AttributeError: module 'xml.etree' has no attribute 'html'是由于在导入lxml库时出现了错误。正确的导入方式是import lxml.html,而不是import lxml。
以下是一个演示如何解决AttributeError: module 'xml.etree' has no attribute 'html'的例子:
```python
import lxml.html
# 这里可以继续编写你的代码
```
阅读全文