python combine list into string code example

Example 1: python join items in list

l = ['aaa', 'bbb', 'ccc']

s = ''.join(l)
print(s)
# aaabbbccc

s = ','.join(l)
print(s)
# aaa,bbb,ccc

s = '-'.join(l)
print(s)
# aaa-bbb-ccc

s = '\n'.join(l)
print(s)
# aaa
# bbb
# ccc

Example 2: python merge list into string

>>> sentence = ['this','is','a','sentence']
>>> '-'.join(sentence)
'this-is-a-sentence'

Example 3: join() python

# example of join() function in python

numList = ['1', '2', '3', '4']
separator = ', '
print(separator.join(numList))

Example 4: concatenate list of strings python

listvalues = ['a', 'b', 'c']
concstring = ''.join(l)