Answers for "python console change directory"

2

change working directory python

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

how to use path to change working directory in python

pip install path
from path import Path

# set working directory
Path("/toWhereYouWantItToBe").cd()
Posted by: Guest on March-09-2020
0

how to change os path in python

os.chdir(path)
Posted by: Guest on July-17-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 console change directory"

Python Answers by Framework

Browse Popular Code Answers by Language