Answers for "python change working directory and run command"

2

change working directory python

import os
os.chdir(new_working_directory)
Posted by: Guest on August-05-2020
0

Change my python working directory

# 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('/tmp')

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

Code answers related to "python change working directory and run command"

Python Answers by Framework

Browse Popular Code Answers by Language