python的bs4如何筛选出h1标签中的内容
大家讲道理
大家讲道理 2017-04-18 10:21:14
0
2
907

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

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(2)
Peter_Zhu
>>> 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

像這樣嗎?

伊谢尔伦

h1.字串

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!