combine to lists python code example
Example 1: combine to lists python
listone = [1,2,3]
listtwo = [4,5,6]
joinedlist = listone + listtwo
Example 2: how to combine two lists in python
l1 = ["a", "b" , "c"]
l2 = [1, 2, 3]
l1 + l2
>>> ['a', 'b', 'c', 1, 2, 3]
Example 3: merge lists in list python
import itertools
a = [['a','b'], ['c']]
print(list(itertools.chain.from_iterable(a)))
Example 4: combine list of lists python
x = [["a","b"], ["c"]]
result = sum(x, [])
# This combines the lists within the list into a single list