Answers for "concatenate in python for list"

28

Concatenate Item in list to strings

>>> 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 "concatenate in python for list"

Python Answers by Framework

Browse Popular Code Answers by Language