TypeError: 'NoneType' object is not iterable
时间: 2023-07-17 13:58:21 浏览: 159
《Python数据分析基础》笔记:“TypeError, ‘int’ object is not iterable”
5星 · 资源好评率100%
这是一个 Python 程序错误。"TypeError: 'NoneType' object is not iterable"意思是你试图在一个不可迭代对象上进行迭代操作。这通常是由于您尝试在 None 类型上调用迭代器方法,而 None 类型没有这样的方法。
这个错误可能是由于调用一个返回None的函数或变量之后使用了迭代相关操作,在debug的时候需要找到那个位置并修改。
阅读全文