"KraftDiner" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
> 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**2
>
> Now.. Can I change this quickly into a 1 dimensional list of length
> 65536?

If 'a' were a Numeric/Numarray/NumPy array, then I believe you could 
re-dimensionalize it on the fly to be 1x65536 instead of 256x256.  See 
numeric.scipy.org for more.

tjr



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to