split each word in a string and convert to list using map python code example
Example: python split sentence into words
sentence = 'Hello world a b c'
split_sentence = sentence.split(' ')
print(split_sentence)
sentence = 'Hello world a b c'
split_sentence = sentence.split(' ')
print(split_sentence)