在BeautifulSoup中,如果要找到一个class或id不存在的div元素,可以使用以下方式:
from bs4 import BeautifulSoup
# 假设html是你要解析的HTML文档字符串
soup = BeautifulSoup(html, 'html.parser')
div_elements = soup.select('div') # 选择所有的div元素
# 遍历所有的div元素,判断class或id属性是否存在
for div in div_elements:
if 'class' not in div.attrs and 'id' not in div.attrs:
# 找到了目标元素
print(div)
from bs4 import BeautifulSoup
# 假设html是你要解析的HTML文档字符串
soup = BeautifulSoup(html, 'html.parser')
div_elements = soup.find_all(lambda tag: tag.name == 'div' and 'class' not in tag.attrs and 'id' not in tag.attrs)
# 遍历找到的div元素
for div in div_elements:
# 找到了目标元素
print(div)
以上两种方法可以帮助你在漂亮的汤(BeautifulSoup)中找到class或id不存在的div元素。如果你想了解更多关于BeautifulSoup的用法,可以参考腾讯云产品文档中的介绍:BeautifulSoup简介及使用。
领取专属 10元无门槛券
手把手带您无忧上云