Answers for "concatenation of list in python"

6

join lists python

first_list = ["1", "2"]
second_list = ["3", "4"]

# Multiple ways to do this:
first_list += second_list
first_list = first_list + second_list
first_list.extend(second_list)
Posted by: Guest on April-17-2020
2

python concatenate list of lists

x = [["a","b"], ["c"]]

result = sum(x, [])
Posted by: Guest on July-04-2020

Code answers related to "concatenation of list in python"

Python Answers by Framework

Browse Popular Code Answers by Language