您的位置:首页技术文章
文章详情页

python的bs4如何筛选出h1标签中的内容

【字号: 日期:2022-09-15 13:55:06浏览:22作者:猪猪

问题描述

今天在学习bs4的解析html中 发现有解析各种标签中的内容的语句,但是未找到能解析出h1 h2 h3 h4这些标签中的文字的语句和参数啊,请问该如何进行筛选呢?

问题解答

回答1:

>>> from bs4 import BeautifulSoup>>> html = ''' <html> <h1 align='center'>This is heading 1</h1> </html> '''>>> soup = BeautifulSoup(html,’html.parser’)>>> res = soup.find(’h1’).get_text()>>> print(res)This is heading 1

像这样吗?

回答2:

h1.string

标签: Python 编程
相关文章: