how do i get this code to stop referring to its present value, so that the values already saved in the list are not changed to the present value?
Cm = 0x5A827999; Mm = 0x6ED9EBA1
Cr = 19; Mr = 17
Tm = [[0]*8]*24
Tr = [[0]*8]*24
for i in range(8):
for j in range(24):
Tm[j][i] = Cm
Cm = (Cm + Mm) % 2**32
Tr[j][i] = Cr
Cr = (Cr + Mr) % 32
if anyone cares, this is part of CAST-256