Answers for "python concatenate lists of strings"

28

python merge list into string

>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'
Posted by: Guest on April-11-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 "python concatenate lists of strings"

Python Answers by Framework

Browse Popular Code Answers by Language