Need help initializing a list or tuple.

KraftDiner bobrien18 at yahoo.com
Mon Mar 6 12:29:48 EST 2006


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?




More information about the Python-list mailing list