Text Analyser
Complete all the steps.
### Step 1 ###
### Create a function called get_words that returns a list
### of all the words in a given text
# add code here...
text = 'the sky is blue'
print(get_words(text))
assert get_words(text) == ['the', 'sky', 'is', 'blue']
Setting up Python environment...
Console
Step 1: