Answers for "python make string to array"

5

python string to array

>>> text = 'a b c'
>>> text = text.split(' ')
>>> text
[ 'a', 'b', 'c' ]
Posted by: Guest on May-10-2020

Code answers related to "python make string to array"

Python Answers by Framework

Browse Popular Code Answers by Language