Answers for "how to do a join in python"

28

what is join use for in python

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

Code answers related to "how to do a join in python"

Python Answers by Framework

Browse Popular Code Answers by Language