join elements of list python 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: how to join a list of characters in python

>>> a = ['a', 'b', 'c', 'd']
>>> ''.join(a)
'abcd'

Example 4: python join list

''.join(list) # If you want to join with comma (,) then: ','.join(list)

Example 5: concatenate list of strings python

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