BeautifulSoup怎么获取父标签

avatar
作者
筋斗云
阅读量:0

要获取父标签,可以使用BeautifulSoup中的find_parent()方法。

例如,假设我们有以下HTML代码:

<div class="parent">     <p>子标签p> div> 

我们想要获取子标签

的父标签

,可以使用以下代码:

from bs4 import BeautifulSoup  html = """ 

子标签

"""
soup = BeautifulSoup(html, 'html.parser') p_tag = soup.find('p') parent_tag = p_tag.find_parent() print(parent_tag)

输出结果为:

<div class="parent">     <p>子标签p> div> 

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!