Answers for "how to get the base directory in python"

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
1

python get base directory

import os
os.path.dirname(os.path.realpath(__file__))
Posted by: Guest on May-11-2020

Code answers related to "how to get the base directory in python"

Python Answers by Framework

Browse Popular Code Answers by Language