Created
May 27, 2020 00:28
-
-
Save ReemRashwan/ca1ff851c4782f0d420c317f511e3e89 to your computer and use it in GitHub Desktop.
Deep Learning Snippets
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
def create_dir(dirname): | |
try: | |
os.makedirs(dirname) | |
print(f"Directory '{dirname}' created.") | |
except FileExistsError: | |
print(f"Directory '{dirname}' already exists.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment