for tr in table.find_all("tr"): AttributeError: 'NoneType' object has no attribute 'find_all' 怎么跳过这个错误继续循环
时间: 2023-12-14 15:02:27 浏览: 154
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
你可以使用 `try` 和 `except` 语句来捕获这个错误并跳过它,继续循环。例如:
```
for tr in table.find_all("tr"):
try:
# 执行一些操作
except AttributeError:
# 如果出现 'NoneType' object has no attribute 'find_all' 错误,就跳过这个错误并继续循环
continue
```
这样,当出现 `'NoneType' object has no attribute 'find_all'` 错误时,程序会自动跳过这个错误并继续下一个循环。
阅读全文