how to change a list to a string in python 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: convert list to string python

my_list = ["Hello", 8, "World"]
string = " ".join(my_list)
print(string)
"""
output
Hello 8 World
"""

Example 4: how to convert a list to a string in python

array = []
STR = ''
for i in array:
    STR = STR+i

Tags:

C Example