l = [[1, 2], [3, 4], [5, 6, 7]] flat_list = [item for sublist in l for item in sublist] # flat_list = [1, 2, 3, 4, 5, 6, 7]