#! usr/bin/env python print __name__ import sys sys.path.append('./obj') sys.path.append('../obj') import hello print hello.greet ("Tintin", "Belgium") h = hello.hello ("France") print h.greet () print h.invite ()