python change current directory code example
Example 1: get working directory python
import os
os.getcwd()
Example 2: setwd python
os.chdir("/home/varun/temp")
Example 3: change the current working directory in python
import os
cdir = os.getcwd()
print("Previous_dir",cdir)
os.chdir('C:/Users/../Desktop/desire_folder')
print("Current_dir",cdir)
Example 4: change working directory python
import os
os.chdir(new_working_directory)
Example 5: how to use path to change working directory in python
pip install path
from path import Path
Path("/toWhereYouWantItToBe").cd()