.join python list code example
Example 1: python merge list into string
>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'
Example 2: python join list
''.join(list) # If you want to join with comma (,) then: ','.join(list)