set working directory to file location python code example
Example 1: change directory in python script
os.chdir(os.path.dirname(__file__))
Example 2: python set cwd to script directory
abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)