I am learning python from here. In this exercise what it says is to find out the errors in his code that is given in this particular location
Now in the previous exercise, number 25, he made us write a few defs. In this code I see him using words = ex25.break_words(sentence). Now I am not sure if we can do this or not.
So what I did was to create a new python script and name it testScript.py. In this, I defined a function that just prints something out. In another python script, say myScript.py what I do is
testScript.callFunction()
I get an error when I run myScript.py:
NameError: name 'testSCript' is not defined.
But I do not get any such error when I am running the above code from the location given by the author. Also, in the Common Questions By Student section in the end in here. I am not sure what is he talking about in the first question. What exactly does he mean by removing the references.
Thanks