python xpath获取文本内容
时间: 2023-05-01 08:01:36 浏览: 139
python-xpath获取html文档的部分内容
5星 · 资源好评率100%
使用 Python 的 lxml 库可以轻松使用 XPath 提取文本内容。
示例代码:
```python
from lxml import etree
html = '<div><p>hello</p><p>world</p></div>'
tree = etree.HTML(html)
p_tags = tree.xpath('//p')
for p in p_tags:
print(p.text)
```
输出结果:
```
hello
world
```
这段代码使用 XPath 语句 '//p' 查找所有的 p 标签,并循环输出它们的文本内容。
阅读全文