flatten list of some pytho code example
Example 1: flatten list of lists python
flat_list = [item for sublist in t for item in sublist]
Example 2: flatten a list of list python
# idiomatic python
# using itertools
import itertools
list_of_list = [[1, 2, 3], [4, 5], [6]]
chain = itertools.chain(*images)
flattened_list = list(chain)
# [1, 2, 3, 4, 5, 6]