Python program to split the text sentence/paragraph into a list of words. 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)