I'm looking to keep a change in my python working directory; however, when I change the directory with the following code:
import os
os.chdir('Path')
and exit out of python, the working directory reverts back to the default while attempting to run a script within this working directory.
How do I keep the changed working directory? I'm using a Mac (if that makes a difference). Any help is greatly appreciated for this novice looking to self teach python.