Answers for "How to get path from project in python"

1

get python script path

import os
def GetScriptPath():
    return os.path.realpath(__file__);

print(GetScriptPath());
Posted by: Guest on June-11-2021
2

python file from path

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

Code answers related to "How to get path from project in python"

Python Answers by Framework

Browse Popular Code Answers by Language