python os change directory code example
Example 1: working directory python
import os
cwd = os.getcwd()
Example 2: python cd to directory
import os
os.chdir(path)
Example 3: setwd python
os.chdir("/home/varun/temp")
Example 4: change directory in python os
import os
path = "C:\Users\Your\Directory"
os.chdir(path)
Example 5: change directory in python script
os.chdir(os.path.dirname(__file__))
Example 6: os.chdir python
os.chdir("directory name")