beautifulsoup python在href中获取文本值,

时间:2016-11-06 15:38:41

标签: python web-scraping beautifulsoup

<a href="allswell/index.html">Oh well Oh well</a>

我正在努力获得价值“哦,哦,好吧”

我可以使用tr['href']来获取“allswell / index.html”

但是我已经尝试了所有文本,元素..我怎么称呼这个值,我如何从beautifulsoup获得这个值?

谢谢,

1 个答案:

答案 0 :(得分:2)

您可以使用元素的text属性

print(tr.text)