document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. >>> l = [[1,2,3],[4,5,6],[7,8,9]]
  2. >>> l = [item for sublist in l for item in sublist]
  3. >>> l
  4. [1, 2, 3, 4, 5, 6, 7, 8, 9]
');