Answers for "a pythonprog that gets the path to the derectory in which it is loacated"

1

python reference script directory

>>> import os
>>> print(os.path.dirname(os.path.realpath(__file__))) 
C:FileLocation # Does not contain filename
Posted by: Guest on September-24-2020
0

python how to get directory of script

import os
print(os.path.abspath(''))
Posted by: Guest on December-04-2020

Code answers related to "a pythonprog that gets the path to the derectory in which it is loacated"

Python Answers by Framework

Browse Popular Code Answers by Language