这是代码:
count = 0
i = 0
while count < len(newlist):
if newlist[i] == newlist[i+6] and newlist [i+6] != newlist [i+12]:
two1.append(newlist[i])
two1.append(newlist[i+1])
two1.append(newlist[i+2])
two1.append(newlist[i+3])
count=count+1
i=i+6
print two1
在终端中,我得到:
File "<stdin>", line 2
count=count+1; i=i+6
^
IndentationError: unexpected indent
在 learnpython.org 编辑器中,我没有收到任何错误。无论哪种方式,two1 都打印为 [],这不是我想要的。