s=[1,2,3,4,5,1,2,3,4,5]for k in range(len(s)): print(s)#输出s 看s的变化 print(k)#输出k 看k的变化 if s[k]==1: del s[k]#当k取到8时就越界出问题了,因为循环过程中s的个数已变化