我在列表中有数据:ls1在给出打印功能时打印正常
[5, 2, 7, 4, 3, 9, 8, 6, 10]
但是,我在尝试时遇到错误:
P81=[]
P81.append(ls1[5])
代码有什么问题吗?这是完整的副本供参考。代码只是一个密钥生成函数,它接受10个元素列表并执行一些排列和移位。 leftShift是一个只对列表执行移位操作的函数。
def keyGen(key):
import numpy
#3 5 2 7 4 10 1 9 8 6
P10=[]
P10.append(key[2])
P10.append(key[4])
P10.append(key[1])
P10.append(key[6])
P10.append(key[3])
P10.append(key[9])
P10.append(key[8])
P10.append(key[7])
P10.append(key[5])
#Now, P10 contains the keys after initial permutation
#Take 2 halves and perform left shift
ls1a=leftShift(P10[0:5])
ls1b=leftShift(P10[5:10])
ls1=ls1a+ls1b
P81=[]
#6 3 7 4 8 5 10 9
print ls1
P81.append(ls1[5])
P81.append(ls1[2])
P81.append(ls1[6])
P81.append(ls1[3])
P81.append(ls1[7])
P81.append(ls1[4])
P81.append(ls1[9])
P81.append(ls1[8])
#For the second set of keys perform the second shift
ls2a=leftShift(ls1a)
ls2b=leftShift(ls1b)
ls2=ls2a+ls2b
P82=[]
P82.append(ls2[5])
P82.append(ls2[2])
P82.append(ls2[6])
P82.append(ls2[3])
P82.append(ls2[7])
P82.append(ls2[4])
P82.append(ls2[9])
P82.append(ls2[8])
return([P81,P82])
答案 0 :(得分:2)
索引错误是索引到ls1
,而不是 .append()
来电。
您的ls1
没有10个元素,但您尝试将其编入索引:
P81.append(ls2[9])
P81.append(ls2[8])
您只向P10
添加了9个元素(您忽略了key[0]
),因此您的假设已经分崩离析。因此,如果leftShift
不再丢失任何元素,则ls1
长度为9个元素,因此:
P81.append(ls1[9])
会失败。即使没有,您也会忽略ls1[0]
和ls1[1]
。 ls2
遇到同样的问题;如果leftShift
不删除任何元素,则该列表中有9个元素,而不是10个元素。