Answers for "concatenate list of strings python"

13

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
23

python merge list into string

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

python concatenate lists

a = [1, 2, 3]
b = [4, 5]

# method 1:
c = a + b # forms a new list with all elements
print(c) # [1, 2, 3, 4, 5]

# method 2:
a.extend(b) # adds the elements of b into list a
print(a) # [1, 2, 3, 4, 5]
Posted by: Guest on May-31-2021
2

concatenate list of strings python

listvalues = ['a', 'b', 'c']
concstring = ''.join(l)
Posted by: Guest on November-26-2020

Code answers related to "concatenate list of strings python"

Python Answers by Framework

Browse Popular Code Answers by Language