I have a nagging problem with importing modules I create. Although I can save them alright, when I open the Python shell to import it, it gives me this:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import draw ImportError:
No module named 'draw'.
This is very frustrating because I can run it directly from the file but when I want to import it, I get that error message.