例如:
<div> hello
<a> world</a>
</div>
希望只返回hello.
做法:查找时,text参数为True.
print(soup.find("div",text=True).get_text());
例如:
<div> hello
<a> world</a>
</div>
希望只返回hello.
做法:查找时,text参数为True.
print(soup.find("div",text=True).get_text());