Skip to content

Instantly share code, notes, and snippets.

@Ronald-TR
Created March 16, 2018 04:19
Show Gist options
  • Save Ronald-TR/45796edbd8324339fe6d43bdd39e9645 to your computer and use it in GitHub Desktop.
Save Ronald-TR/45796edbd8324339fe6d43bdd39e9645 to your computer and use it in GitHub Desktop.
CD in Python
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