Skip to content

Instantly share code, notes, and snippets.

@curious-username
Last active September 11, 2021 02:52
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 curious-username/2a1d708ebe847f5be43f56c41f722537 to your computer and use it in GitHub Desktop.
Save curious-username/2a1d708ebe847f5be43f56c41f722537 to your computer and use it in GitHub Desktop.
basic folder creation function
import os
directory = input()
print(os.listdir())
os.mkdir(directory)
print(os.listdir())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment