I am very new to python programming and writing simple helloworld program by using python 3.3 on windows environoment.The helloworld program is saved as hello.py. So how can i
Use this way:
import sys
then:
sys.path.insert(0,"X")
Where X is the directory you want to import from.
X
After that you just need to import your custom module:
import X
Thats all.