how to change working directory in python code example

Example 1: get working directory python

import os
os.getcwd()

Example 2: change the current working directory in python

import os
cdir = os.getcwd() # it will return current working directory
print("Previous_dir",cdir)
# Previous_dir C:\Users\..\Desktop\python
os.chdir('C:/Users/../Desktop/desire_folder') #chdir used for change direcotry
print("Current_dir",cdir)
# Current_dir C:\Users\..\Desktop\python\teamspirit

Example 3: change directory in python script

os.chdir(os.path.dirname(__file__))

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

# set working directory
Path("/toWhereYouWantItToBe").cd()

Example 6: python change working directory to file directory

import os

abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)