Created
November 24, 2016 08:21
-
-
Save fluency03/17fca8251aac28260d0f6c7910b2d668 to your computer and use it in GitHub Desktop.
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
| print __file__ | |
| print os.curdir | |
| print os.getcwd() | |
| print os.chdir('.') | |
| print os.getcwd() | |
| print os.path.dirname(__file__) | |
| print os.pardir | |
| print os.path.abspath(os.path.join(os.path.dirname( __file__ ), os.pardir)) | |
| print os.path.join(os.path.dirname( __file__ ), os.pardir) | |
| # H:/My Documents/Python Scripts/dam/src/store.py | |
| # . | |
| # H:\My Documents\Python Scripts\dam | |
| # None | |
| # H:\My Documents\Python Scripts\dam | |
| # H:/My Documents/Python Scripts/dam/src | |
| # .. | |
| # H:\My Documents\Python Scripts\dam | |
| # H:/My Documents/Python Scripts/dam/src\.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment