Skip to content

Instantly share code, notes, and snippets.

@atul-ma
Created December 20, 2018 02:35
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 atul-ma/f0621a42d51f302229eb6a749e8356c0 to your computer and use it in GitHub Desktop.
Save atul-ma/f0621a42d51f302229eb6a749e8356c0 to your computer and use it in GitHub Desktop.
import os
def makefolder():
a=0
for i in range(0,500000):
b=str(a)
os.mkdir(b)
a=a+1
print(a)
makefolder()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment