w3resource

Python: Retrieve the current working directory and change the dir

Python Operating System Services: Exercise-9 with Solution

Write a Python program to retrieve the current working directory and change the dir (moving up one).

Sample Solution:

Python Code :

import os
print('Current dir:', os.getcwd())
print('\nChange the dir (moving up one):', os.pardir)
os.chdir(os.pardir)
print('Current dir:', os.getcwd())
print('\nChange the dir (moving up one):', os.pardir)
os.chdir(os.pardir)
print('Current dir:', os.getcwd())

Sample Output:

Current dir: /tmp/sessions/a9c74a8fb247929c

Change the dir (moving up one): ..
Current dir: /tmp/sessions

Change the dir (moving up one): ..
Current dir: /tmp

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to find the parent’s process id, real user ID of the current process and change real user ID.
Next: Write a python program to access environment variables and value of the environment variable.

What is the difficulty level of this exercise?

Test your Python skills with w3resource's quiz


Python: Tips of the Day

Python: Unknown Arguments Using *arguments

If your function can take in any number of arguments then add a * in front of the parameter name:

def myfunc(*arguments):
 for a in arguments:
   print a
myfunc(a)
myfunc(a,b)
myfunc(a,b,c)