Answers for "how to find the current path in python"

9

get path to current directory python

import os
os.path.abspath(os.getcwd())
Posted by: Guest on September-16-2020
1

sys get current pythonpath

import sys
print(sys.version)
print(sys.path)
Posted by: Guest on February-08-2021

Code answers related to "how to find the current path in python"

Python Answers by Framework

Browse Popular Code Answers by Language