convert string to list using map python code example
Example 1: python string to array
>>> text = 'a b c'
>>> text = text.split(' ')
>>> text
[ 'a', 'b', 'c' ]
Example 2: convert string to list python
word = "Hey Hello world"
print(list(word))
# output
# ["Hey", "Hello", "world"]