getcwd python code example
Example 1: get wd in python
import os
path = os.getcwd()
print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook
print(type(path))
# <class 'str'>
Example 2: pwd python
import os
cwd = os.getcwd()
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