'_io.BytesIO' object has no attribute 'next' 报错原因
时间: 2023-10-10 13:14:26 浏览: 67
AttributeError: module 'tensorflow.compat.v1' has no attribute '
在 Python 3 中,`next()` 方法已经被移除,取而代之的是 `__next__()` 方法。因此,如果在 Python 3 中使用 `next()` 方法,会出现 `'_io.BytesIO' object has no attribute 'next'` 的错误。解决方法是使用 `__next__()` 方法替代 `next()` 方法。
阅读全文