Introduction Python Tutorial

# C:\python\hello.py
print "Hello, world!"
# C:\testModule.py
import sys
sys.path.append('c:/python')
import hello
hello = reload(hello)