gpt4 book ai didi

python - 如何使用beautifulsoup分别获取节点文本和children标签

转载 作者:行者123 更新时间:2023-11-28 22:39:36 25 4
gpt4 key购买 nike

我的 html 是这样的:

<a class="title" href="">
<b>name
<span class="c-gray">position</span>
</b>
</a>

我想分别获取姓名和职位字符串。所以我的脚本是这样的:

lia = soup.find('a',attrs={'class':'title'})
pos = lia.find('span').get_text()
lia.find('span').replace_with('')
name = lia.get_text()
print name.strip()+','+pos

虽然它可以完成这项工作,但我认为这不是一个美丽的方式。有更好的主意吗?

最佳答案

你可以这样使用.contents方法:

person = lia.find('b').contents
name = person[0].strip()
position = person[1].text

关于python - 如何使用beautifulsoup分别获取节点文本和children标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34553596/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com