Answers for "how to merge all the items in a list into a string in python"

28

python merge list into string

>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'
Posted by: Guest on April-11-2020

Code answers related to "how to merge all the items in a list into a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language