rafaelmaeuer
11/27/2017 - 12:35 PM

Convert a string to an array in Python

>>> text = 'a,b,c'
>>> text = text.split(',')
>>> text
[ 'a', 'b', 'c' ]