Answers for "python3 run script with working directory"

0

python set cwd to script directory

abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
Posted by: Guest on October-11-2020

Code answers related to "python3 run script with working directory"

Python Answers by Framework

Browse Popular Code Answers by Language