Last active
December 18, 2015 19:38
-
-
Save maluta/5834059 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
| #!/usr/bin/python | |
| import os | |
| diretorios = [ name for name in os.listdir(os.getcwd()) if os.path.isdir(os.path.join(os.getcwd(), name)) ] | |
| for i in diretorios: | |
| print i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment