Answers for "set new working directory in python"

24

get wd in python

import os

path = os.getcwd()

print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook

print(type(path))
# <class 'str'>
Posted by: Guest on January-26-2020
5

setwd python

os.chdir("/home/varun/temp")
Posted by: Guest on April-13-2020

Code answers related to "set new working directory in python"

Python Answers by Framework

Browse Popular Code Answers by Language