Answers for "how to concatinate list in python"

0

Concatenate lists

>>> a = [1, 2, 3]
>>> b = [4, 5, 6]
>>> c = a + b
>>> print(c)
[1, 2, 3, 4, 5, 6]
Posted by: Guest on October-21-2021

Code answers related to "how to concatinate list in python"

Python Answers by Framework

Browse Popular Code Answers by Language