how to print a list as 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
list1 = ['1', '2', '3']
str1 = ''.join(list1)
Example 3: how to convert a list to a string in python
array = []
STR = ''
for i in array:
STR = STR+i
Example 4: how to print from a python list
list = ['a', 'b']
print(list[0])
#that will print 'a'
#print(list[1]) will print 'b'