How do you deal with them? A stupid example: let's say we have a list like this
a = [[[1,2],[3,4]],[[5,6],[7,8]]]
and I want to print
[1,2,3,4,5,6,7,8]
The way I've come up with is the following:
print [b[t] for b in [c[w] for c in a for w in xrange(len(c))] for t in xrange(len(b))]
Which I find ugly as heck. Is there any better way to obtain the same result?