type object is not iterable
时间: 2023-04-21 19:00:12 浏览: 64
Python 出现错误TypeError: ‘NoneType’ object is not iterable解决办法
这意味着尝试将不可迭代对象当做可迭代对象使用。可迭代对象是指能够被循环遍历的对象,如列表、字符串、元组等。如果尝试对不可迭代对象使用 `for ... in ...` 语句,会出现这个错误。请检查代码是否使用了正确的对象,或者将不可迭代对象转换为可迭代对象。
阅读全文