Answers for "turn string to array python"

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 "turn string to array python"

Python Answers by Framework

Browse Popular Code Answers by Language