Answers for "python how to open current directory using os module"

17

python get current directory

import os

print(os.getcwd())
Posted by: Guest on March-02-2021
0

path of current working directory with os module python

import os
cwd = os.getcwd()

my_file='image.png'
file_path = os.path.join(cwd, my_file)
file_path
Posted by: Guest on July-04-2021

Code answers related to "python how to open current directory using os module"

Python Answers by Framework

Browse Popular Code Answers by Language