for tr in tbody.find_all('tr'):报错'NoneType' object has no attribute 'find_all'
时间: 2023-11-16 10:05:03 浏览: 197
java关于找不到类的错误
这个错误通常是因为 `tbody` 对象为 `None`,因此没有 `find_all` 属性。你可以检查一下 `tbody` 对象是否存在,或者在使用 `find_all` 方法之前先进行判空操作,例如:
```python
if tbody is not None:
for tr in tbody.find_all('tr'):
# do something
else:
# handle the case where tbody is None
```
阅读全文