Possible Duplicates:
Flattening a shallow list in python
How flatten a list of lists one step
I didn't find any other question, so here it is:
I have a list of lists of objects of the same type like this:
[[a,b,c],[d,e,f]]
i want:
[a,b,c,d,e,f]
there's probably an easy way doing this, but i'm kind of stuck.