Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python string to array

>>> text = 'a b c'
>>> text = text.split(' ')
>>> text
[ 'a', 'b', 'c' ]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #string #array
ADD COMMENT
Topic
Name
5+7 =