【解析】
这个错误提示一般发生在将None赋给多个值时。
【案例】
定义了如下的函数
def test(): if value == 1: a = b = 1 return a,b value = 0 a,b = test()
Python问题:'Nonetype' object is not iterable
原文地址:https://www.cnblogs.com/classics/p/11165596.html
时间: 2024-10-12 06:10:45
这个错误提示一般发生在将None赋给多个值时。
定义了如下的函数
def test(): if value == 1: a = b = 1 return a,b value = 0 a,b = test()
Python问题:'Nonetype' object is not iterable
原文地址:https://www.cnblogs.com/classics/p/11165596.html