making a lis to 3 other list in python code example
Example 1: list of lists python
listOfLists = [[1,2,3],['hello','world'],[True,False,None]]
Example 2: merge lists in list python
import itertools
a = [['a','b'], ['c']]
print(list(itertools.chain.from_iterable(a)))