gpt4 book ai didi

python - Soup.select,只返回第一个结果

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

有什么方法可以从 for i soup.select(table) 中获取第一个结果吗?我只想要第一个表,它之后的每个表都应该被忽略。代码后跟一个 if 语句:if i.find('th', text = 'Foo'):

TLDR;

寻找这样的东西:if i[0].find('th', text = 'Foo'):

最佳答案

一种方法是在第一次迭代后立即break:

for i in soup.select('table'):
if i.find('th', text = 'Foo'):
...
break

另一种是链接方法,如果找不到元素则捕获异常:

try:
el = soup.select('table')[0].find('th', text='Foo')
except AttributeError, TypeError:
print('element not found')

注意:soup.select('table')[0]soup.find('table') 给出相同的结果

关于python - Soup.select,只返回第一个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31037025/

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