Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 27, 2018 03:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/ec009770142c3dcf346da5557497bf3d to your computer and use it in GitHub Desktop.
Save Fhernd/ec009770142c3dcf346da5557497bf3d to your computer and use it in GitHub Desktop.
Creación de un directorio (carpeta) con Python.
import os
if not os.path.exists('literatura'):
os.makedirs('literatura')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment