我在列表中有数据: 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])