當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python BeautifulSoup parents屬性用法及代碼示例


Tag.parents 屬性返回一個用於迭代父標簽的生成器。

例子

考慮以下 HTML 文檔:

my_html = """
       <div id="people">
              <div id="profile">
                     <p>Alex</p>
      </div>
       </div>
"""
soup = BeautifulSoup(my_html)

要打印 <p>Alex</p> 的父元素的 id

p_tag = soup.find("p")
for parent in p_tag.parents:
       if parent.has_attr("id"):
              print(parent["id"])



profile
people

請注意,我們必須首先檢查父標記是否包含 id 屬性。 Beautiful Soup 的最頂層元素不包含 id 屬性,因此如果沒有此檢查,將會拋出錯誤。

相關用法


注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 BeautifulSoup | parents property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。