Answers for "how to merge 2 list in python"

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
0

concatenate two lists

# concatenation using naive method 
 
# Initializing lists
test_list1 = [1, 4, 5, 6, 5]
test_list2 = [3, 5, 7, 2, 5]
  
# using naive method to concat
for i in test_list2 :
    test_list1.append(i)
Posted by: Guest on August-12-2021
0

merge two lists python

>>> l1 = [1, 2, 3]
>>> l2 = [4, 5, 6]
>>> joined_list = [*l1, *l2]  # unpack both iterables in a list literal
>>> print(joined_list)
[1, 2, 3, 4, 5, 6]
Posted by: Guest on May-12-2021

Code answers related to "how to merge 2 list in python"

Python Answers by Framework

Browse Popular Code Answers by Language