Answers for "inport os find directory"

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
11

python get current file location

import os
os.path.dirname(os.path.abspath(__file__))
Posted by: Guest on May-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language