gpt4 book ai didi

python - BeautifulSoup 在特定标题后得到表格

转载 作者:太空宇宙 更新时间:2023-11-04 08:25:31 24 4
gpt4 key购买 nike

我如何定位 BS4 以在 <h3>64-bit deb for Ubuntu/Debian</h3> 之后的表格开始? ?有很多表,唯一不同的是表头。

<h3>Windows 64-bit</h3>
<table width="600" border="1" align="center">
:
</table>
:
<h3>64-bit deb for Ubuntu/Debian</h3>
<table width="600" border="1" align="center">
:
</table>
:

最佳答案

这行得通吗?

>>> for header in soup.find_all('h3'):
... if header.get_text() == '64-bit deb for Ubuntu/Debian':
... header.find_next_sibling()
...
<table align="center" border="1" width="600">
:
</table>

关于python - BeautifulSoup 在特定标题后得到表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57655108/

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