Python-美丽的汤获得特定的跨度值
HTML
<span class="percentage" data-qa="score1">
95%
</span>
<span class="percentage" data-qa="score2">
77%
</span>
代码:
soup.find('span', class_='percentage')
欲望结果:
77%
实际结果:
95%
问题
How do you specify the score2 value?
html
<span class="percentage" data-qa="score1">
95%
</span>
<span class="percentage" data-qa="score2">
77%
</span>
code:
soup.find('span', class_='percentage')
Desire Result:
77%
Actual Results:
95%
Question
How do you specify the score2 value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
attrs
参数来指定字典中的属性。请参阅如何在内部使用连字符。 >
Use the
attrs
argument to specify attributes in a dictionary.See How to use hyphen inside .find_all of BeautifulSoup?