kj <no.email at please.post> writes: > lol = [None] * 500 > for i in xrange(len(lol)): > lol[i] = [] lol = map(list, [()] * 500)