使用lxml在python中提取段落

发布于 2024-10-17 16:30:19 字数 449 浏览 7 评论 0原文

我想用python提取html中的段落。我使用了 lxml 模块,但它并不完全符合我的要求。

print html.parse(url).xpath('//p')[1].text_content()

<span id="midArticle_1"></span><p>Here is the First Paragraph.</p><span id="midArticle_2"></span><p>Here is the second Paragraph.</p><span id="midArticle_3"></span><p>Paragraph Three."</p>

我应该补充一点,在不同的页面中,我有不同数量的段落,所以想制作一个列表,然后将段落放入其中。

I would like to extract paragraphs in html by python. I used lxml module but it doesn't do exactly what I am looking for.

print html.parse(url).xpath('//p')[1].text_content()

<span id="midArticle_1"></span><p>Here is the First Paragraph.</p><span id="midArticle_2"></span><p>Here is the second Paragraph.</p><span id="midArticle_3"></span><p>Paragraph Three."</p>

I should add that, in different pages I have different number of paragraph, so would like to make a list and put paragraph into it after that.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一向肩并 2024-10-24 16:30:19
print html.parse(url).xpath('//p/text()')

输出

['Here is the First Paragraph.', 'Here is the second Paragraph.', 
 'Paragraph Three."']
print html.parse(url).xpath('//p/text()')

Output

['Here is the First Paragraph.', 'Here is the second Paragraph.', 
 'Paragraph Three."']
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文