Answers for "how to get path when running python script from cmd"

1

get python script path

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

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

find python path through command line

where python
Posted by: Guest on May-24-2021

Code answers related to "how to get path when running python script from cmd"

Python Answers by Framework

Browse Popular Code Answers by Language