how to set directory in python code example

Example 1: setwd python

os.chdir("/home/varun/temp")

Example 2: change directory in python os

import os

path = "C:\Users\Your\Directory"

os.chdir(path)

Example 3: 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 4: change directory in python script

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