当前位置: 首页 > 工具软件 > next-images > 使用案例 >

报错:AttributeError: ‘_SingleProcessDataLoaderIter‘ object has no attribute ‘next‘

凌运恒
2023-12-01

报错

报错信息:

AttributeError: '_SingleProcessDataLoaderIter' object has no attribute 'next'

出错代码

x = dadta.next()

出错原因

Python版本问题

解决方案

x = next(data)

或者

x = data.__next__()
 类似资料: