Answers for "how to get current directory in python os"

24

get wd in python

import os

path = os.getcwd()

print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook

print(type(path))
# <class 'str'>
Posted by: Guest on January-26-2020

Code answers related to "how to get current directory in python os"

Python Answers by Framework

Browse Popular Code Answers by Language