list of lists to list python code example
Example 1: convert list of list to list python
merged = list(itertools.chain.from_iterable(list2d))
Example 2: flatten lists python
flat_list = []
for sublist in l:
for item in sublist:
flat_list.append(item)