Answer:
def normalize(text):
text = text.lower()
text = text.split()
return text
Step-by-step explanation:
The functiinfunction is provided with an input text when called upon, then it changes every character in the text into lower case and split each word with a space.