n=int(input()) a=list(map(int ,input().split())) before = a[0] count = 0 for i in range(n): if(a[i]!=before):#数字之间发生变化就加一 count = count + 1 before = a[i] if(a[i]==before and i==n-1):#最后一个数字的情况 count = count +1 print(count)
我发现每次我都会报错IndexError: list index out of range,但是不是每次我都是数组下标越界(广泛的来说)。有时候是输入数组时不对劲导致的,例如是用list.append(x)函数,这个函数是将x添加到list尾部,可是我在还没添加的时候(没真正的输入数组的值),下面的代码中我就想用了,这样也会报错。