Try Googling to find out how to convert a sentence into a list of words.
my_sentence = "Hello My name is monkey."
new_sentence = my_sentence.split() # converts a sentence into a list of words
print(new_sentence)
>>> ["Hello", "My", "name", "is", "monkey."]