data_list.append(i.find("span.title").string) AttributeError: 'NoneType' object has no attribute 'string'
时间: 2024-02-16 22:57:03 浏览: 67
string_byte_sink.rar_The Sink
这个错误通常是因为 `i.find("span.title")` 没有找到任何匹配项,因此返回了 `None`。你可以在调用 `.string` 之前添加一个条件语句来检查是否找到了匹配项,例如:
```python
result = i.find("span.title")
if result:
data_list.append(result.string)
```
这样就可以避免 `'NoneType' object has no attribute 'string'` 的错误了。
阅读全文