Possible Duplicate:
Making a flat list out of list of lists in Python
Flatten (an irregular) list of lists in Python
This must me very easy, but I can't seem to find a one-line/efficiënt solution :
I want to convert [(1,2),(3,4),(5,6)]
in [1,2,3,4,5,6]