0

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]

Community
  • 1
  • 1
Anonymous
  • 572
  • 3
  • 15
  • related: [Flattening a shallow list in Python](http://stackoverflow.com/q/406121/4279) – jfs Dec 23 '12 at 16:59
  • 1
    If only I used the word flattening in my endless search. (I know the word, it just didn't pop in my mind.) – Anonymous Dec 23 '12 at 17:07

0 Answers0