Answers for "how to concatanate strings in a 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

Code answers related to "how to concatanate strings in a list"

Python Answers by Framework

Browse Popular Code Answers by Language