Answers for "combine 2 items in a list python and make new list"

4

combining list of list to single list python

import itertools
a = [['a','b'], ['c']]
print(list(itertools.chain.from_iterable(a)))
Posted by: Guest on April-20-2021

Code answers related to "combine 2 items in a list python and make new list"

Python Answers by Framework

Browse Popular Code Answers by Language