The way im currently importing functions is by putting .py files into the “site-packages” directory then calling them using the following command in IDLE:
from myfile import *
I cannot find the “site-packages” directory inside of python3.2 in ubuntu so I need another way to import. thanks.
update your PYTHONPATH to include the other directory.