for循环的'NoneType'不是迭代错误

时间:2018-10-05 18:32:10

标签: python python-3.x loops nonetype

我经历了很多有关“ NoneType”错误的问题,但我不知道为什么这个基本的for循环会给我一个:

TypeError:“ NoneType”类型的参数不可迭代。

lst = [1,0,0,1,1,1,1,0,0,0]
new = list()
for i in lst:
    if i not in new:
        new = new.append(i)
print(new)

0 个答案:

没有答案