changing working directory in python code example
Example 1: change directory in python os
import os
path = "C:\Users\Your\Directory"
os.chdir(path)
Example 2: 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 3: change directory in python script
os.chdir(os.path.dirname(__file__))
Example 4: how to use path to change working directory in python
pip install path
from path import Path
Path("/toWhereYouWantItToBe").cd()