I need to do the opposite of this
http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python
Namely, I have a list of tuples
[(1,2), (3,4), (5,6)]
and need to produce this
[1,2,3,4,5,6]
I would personally do this
>>> tot = []
>>> for i in [(1,2), (3,4), (5,6)]:
... tot.extend(list(i))
but I'd like to see something fancier.