python cd to directory
import os
os.chdir(path)
setwd python
os.chdir("/home/varun/temp")
change directory in python script
os.chdir(os.path.dirname(__file__))
change directory in python os
import os
path = "C:\Users\Your\Directory"
os.chdir(path)
change working directory python
import os
os.chdir(new_working_directory)
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()))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us