list=['a','a','x','c','e','e','f','f','f']
i=0
count = 0
while count < len(list)-2:
if list[i] == list[i+1]:
if list [i+1] != list [i+2]:
print list[i]
i+=1
count +=1
else:print "no"
else:
i +=1
count += 1
我越来越:
else:print "no"
^
IndentationError: unexpected indent
我正在尝试仅打印与以下元素匹配的 elts,而不是与该元素匹配的元素。我是 Python 新手,我不确定为什么这不起作用。