BeautifulSoup怎么獲取子標(biāo)簽

小億
207
2024-05-14 11:09:13
欄目: 編程語言

要獲取子標(biāo)簽,可以使用BeautifulSoup的find()或find_all()方法來查找特定的子標(biāo)簽。

例如,假設(shè)我們有以下HTML代碼:

<div id="parent">
    <p>子標(biāo)簽1</p>
    <p>子標(biāo)簽2</p>
</div>

我們可以使用BeautifulSoup來獲取parent標(biāo)簽的所有子標(biāo)簽p:

from bs4 import BeautifulSoup

html = '''
<div id="parent">
    <p>子標(biāo)簽1</p>
    <p>子標(biāo)簽2</p>
</div>
'''

soup = BeautifulSoup(html, 'html.parser')
parent_tag = soup.find('div', {'id': 'parent'})
child_tags = parent_tag.find_all('p')

for tag in child_tags:
    print(tag.text)

輸出結(jié)果為:

子標(biāo)簽1
子標(biāo)簽2

在這個(gè)例子中,我們首先使用find()方法找到id為parent的div標(biāo)簽,然后使用find_all()方法找到所有的p子標(biāo)簽,并打印出它們的文本內(nèi)容。

0