Your indentation is off, try this:
def break_words(stuff):
"""This function will break up words for us."""
words = stuff.split(' ')
return words
Indentation is a key component of Python, unlike some other languages - so it is important to ensure that your code is properly formatted.