when i attempt to import the following module (ex25.py):
def break_words(stuff):
"""This function will break up words for us."""
words = stuff.split(' ')
return words
all i get back is this:
>>>import ex25
and nothing back…no prompt as to what i did wrong…its almost like it is not even reading the module…
I think you are supposed to type all the lines that start with
>>>after you type the last line,
words, you should see some output from the interpreter