标签: 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)