python convert a list to a string code example

Example 1: list to string python

list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)

Example 2: list to string python

List = ["ITEM1", "ITEM2", "ITEM3"]
string_version = "".join(List)

print(string_version)

Example 3: list to string python

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

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

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

Example 5: python string list to list

>>> import ast
>>> x = '[ "A","B","C" , " D"]'
>>> x = ast.literal_eval(x)
>>> x
['A', 'B', 'C', ' D']
>>> x = [n.strip() for n in x]
>>> x
['A', 'B', 'C', 'D']

Tags:

Java Example