Answers for "python string to arry"

5

python string to array

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

Python Answers by Framework

Browse Popular Code Answers by Language