# Append this directory to the list of places # Python will search for modules (use a relative # path or a full path) # # See: http://docs.python.org/tut/node8.html # import sys sys.path.append('./dir2') # Now you can import circle from circle import * c = Circle(12) print c