combine list of strings python code example
Example 1: python merge list into string
>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'
Example 2: concatenate list of strings python
listvalues = ['a', 'b', 'c']
concstring = ''.join(l)
Example 3: combine two strings python
>>> orig_string = 'Hello'
>>> orig_string + ', world'
'Hello, world'
>>> orig_string
'Hello'
>>> full_sentence = orig_string + ', world'
>>> full_sentence
'Hello, world'
Example 4: combine two strings python
>>> 'a' + 'b' + 'c'
'abc'