Example 1: Using pathlib module
Output
/Users/username /Users/username
Using the pathlib module, you can get the current working directory.
- Pass the file's name in
Path()method. parentgives the logical parent of the path andabsolute()gives the absolute path of the file.pathlib.Path().absolute()gives the current working directory.
Example 2: Using os module
Output
/Users/username /Users/username
You can do the same thing with the os module.
- Use
abspath()method to get an absolute path. getcwd()gives the current working directory.