https://stackoverflow.com/questions/5387208/convert-a-string-to-an-array
>>> text = 'a,b,c' >>> text = text.split(',') >>> text [ 'a', 'b', 'c' ]