python change a list to a string code example

Example 1: convert list to string python

# Python program to convert a list 
# to string using list comprehension 
   
s = ['I', 'want', 4, 'apples', 'and', 18, 'bananas'] 
  
# using list comprehension 
listToStr = ' '.join([str(elem) for elem in s]) 
  
print(listToStr)

Example 2: list to string python

>>> L = [1,2,3]       
>>> " ".join(str(x) for x in L)
'1 2 3'

Example 3: list to string python

list1 = ['1', '2', '3']
str1 = ''.join(list1)

Example 4: convert list of strings to string

string Something = string.Join(",", MyList);

Tags:

Java Example