I have a module foo, containing util.py and bar.py.
I want to import it in IDLE or python session. How do I go about this?
I could find no documentation on h
Give this a try
import sys sys.path.append('c:/.../dir/dir2') import foo