Created
March 16, 2018 04:19
-
-
Save Ronald-TR/45796edbd8324339fe6d43bdd39e9645 to your computer and use it in GitHub Desktop.
CD in Python
This file contains 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 | |
def cdDir(path, cont): | |
diretorio = os.path.dirname(os.path.abspath(path)) | |
if cont <= 0: | |
return diretorio | |
cont = cont - 1 | |
return cdDir(diretorio, cont) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment