How to create flat list out of list of lists in Python

1 Answer

0 votes
lst = [[1, 23, 33, 76], [34, 89, 44], [88], [99, 100]]

flat_lst = [item for sub_lst in lst for item in sub_lst]

print(flat_lst)


'''
run:

[1, 23, 33, 76, 34, 89, 44, 88, 99, 100]

'''

 



answered Sep 5, 2018 by avibootz
...