Answers for "read from current directory python"

17

python get current directory

import os

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

python get current directory

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Posted by: Guest on November-04-2020

Code answers related to "read from current directory python"

Python Answers by Framework

Browse Popular Code Answers by Language