从美丽汤标签中提取href

时间:2020-10-26 06:21:14

标签: python beautifulsoup

>>> type(col)
<class 'bs4.element.Tag'>
>>> col
<td><a href="/english/js/au/">Detail</a></td>

有人可以帮助我从上述数据中以字符串形式干净地提取python href吗?我希望将路径“ / english / js / au /”作为字符串。

1 个答案:

答案 0 :(得分:1)

这应该可以帮助您:

href = col.find('a')['href']

print(href)

输出:

/english/js/au/