Answers for "how concatenate list in in python"

2

python concatenate list of lists

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

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

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

Python Answers by Framework

Browse Popular Code Answers by Language