Answers for "check the current directory from within python 3"

15

working directory python

import os
cwd = os.getcwd()
Posted by: Guest on March-09-2020
5

get diroctary in python

import os
cwd = os.getcwd()
print(cwd)
Posted by: Guest on June-14-2020

Code answers related to "check the current directory from within python 3"

Python Answers by Framework

Browse Popular Code Answers by Language