Answers for "concatenate liste python"

2

python concatenate list of lists

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

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

Python Answers by Framework

Browse Popular Code Answers by Language