怎么用if语句判断python爬取的某一句的class是否为所需要的类型
时间: 2024-05-21 11:12:52 浏览: 62
可以使用以下代码进行判断:
if soup.find('div', {'class': 'my_class'}) is not None:
# do something if the class is what you need
else:
# do something if the class is not what you need
其中,my_class是你需要判断的class名称。soup是使用BeautifulSoup库解析网页后得到的对象。在判断中,如果find方法找到了符合条件的元素,则返回该元素的对象,否则返回None。因此,只需要判断find方法的返回值是否为None即可确定该元素是否存在。
阅读全文