从美丽的汤标签中提取href [重复]
Posted
技术标签:
【中文标题】从美丽的汤标签中提取href [重复]【英文标题】:Extract href from Beautiful soup tag [duplicate] 【发布时间】:2021-02-08 10:14:00 【问题描述】:>>> type(col)
<class 'bs4.element.Tag'>
>>> col
<td><a href="/english/js/au/">Detail</a></td>
有人可以帮我从上述数据中干净地提取 python href 作为字符串吗?我想将路径“/english/js/au/”作为字符串。
【问题讨论】:
【参考方案1】:这应该可以帮助你:
href = col.find('a')['href']
print(href)
输出:
/english/js/au/
【讨论】:
以上是关于从美丽的汤标签中提取href [重复]的主要内容,如果未能解决你的问题,请参考以下文章