python string as list different versions code example
Example 1: python join array of ints
Couple different options
# Convert List as Joining
> print ",".join(str(n) for n in numbers)
# Convert using Map
> ', '.join(map(str, myList))
Example 2: python convert string to list
fruit = 'apple oranges banans'
newlist = fruit.split()
print(newlist)