追加将我的列表转换为NoneType
在Python Shell中,我输入了:
aList = ['a', 'b', 'c', 'd'] for i in aList: print(i)
得到了
a b c d
但是当我尝试:
aList = ['a', 'b', 'c', 'd'] aList = aList.append('e') for i in aList: print(i)
得到了
Traceback (most recent call last): File "<pyshell#22>", line 1, in <module> for i in aList: TypeError: 'NoneType' object is not iterable
有谁知道发生了什么?我该如何解决/解决它?
精慕HU
30秒到达战场
慕哥9229398
相关分类