Thank you that worked great!
a = [[None] * 256] * 256
for i in range(0,256):
for j in range(0,256):
a[i][j] = i**2Now.. Can I change this quickly into a 1 dimensional list of length 65536? -- http://mail.python.org/mailman/listinfo/python-list
