how to set wd in python code example
Example 1: get working directory python
import os
os.getcwd()
Example 2: setwd python
os.chdir("/home/varun/temp")
Example 3: change working directory python
import os
os.chdir(new_working_directory)
Example 4: how to use path to change working directory in python
pip install path
from path import Path
# set working directory
Path("/toWhereYouWantItToBe").cd()