Answers for "how to concatenate list into string python"

14

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
Posted by: Guest on September-09-2020
28

python merge list into string

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

Code answers related to "how to concatenate list into string python"

Python Answers by Framework

Browse Popular Code Answers by Language