Answers for "python check and set current working directory"

7

get current working directory python

# print current working directory in python
import os
cwd = os.getcwd()
print(cwd)
Posted by: Guest on November-25-2020
0

Changing the Current Working Directory in Python

# Import the os module
import os

# Print the current working directory
print("Current working directory: {0}".format(os.getcwd()))

# Change the current working directory
os.chdir('/Projects')

# Print the current working directory
print("New Current working directory: {0}".format(os.getcwd()))
Posted by: Guest on September-25-2021

Code answers related to "python check and set current working directory"

Python Answers by Framework

Browse Popular Code Answers by Language