If I have a div like <div class="a b c ">
and another <div class="a b">
if I use find('div',class_='a b')
I will have both the div.
How can I just get one of the two?
答案 0 :(得分:0)
尝试在特定类上使用find_all(为我工作)。
soup.find_all("div", class_="a b c")
上面给出的只是a b c one。
soup.find_all("div", class_="a b")
虽然这只会在我的测试中返回a b。
如果这不起作用,请考虑查看容器是否按照网站上的特定顺序显示。在这种情况下,您只需索引从函数中获得的列表。