Last active
March 3, 2023 19:38
-
-
Save rreece/32760ad081a7dac5a5e8f4c04fb12f76 to your computer and use it in GitHub Desktop.
Get the path of this file in python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
path_of_this_file = os.path.abspath(__file__) | |
dir_of_this_file = os.path.dirname(os.path.abspath(__file__)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment