turn all items in a list into one string code example
Example 1: convert all items in list to string python
mylist = [str(i) for i in mylist]
Example 2: convert all items in list to string python
map(str, mylist)
#python 3+ map( ) doesn't output a list, which is why:
list(map(str, mylist)
#change 'str' to 'float' or 'int' for other outcomes