get run directory python code example
Example 1: get diroctary in python
import os
cwd = os.getcwd()
print(cwd)
Example 2: how to use path to change working directory in python
pip install path
from path import Path
# set working directory
Path("/toWhereYouWantItToBe").cd()