Skip to content

Instantly share code, notes, and snippets.

@ReemRashwan
Created May 27, 2020 00:28
Show Gist options
  • Save ReemRashwan/ca1ff851c4782f0d420c317f511e3e89 to your computer and use it in GitHub Desktop.
Save ReemRashwan/ca1ff851c4782f0d420c317f511e3e89 to your computer and use it in GitHub Desktop.
Deep Learning Snippets
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