Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
In Python, creates 1000 folders named dir1...dir1000:
import os
for i in range(1000):
os.mkdir("dir{}".format(i+1))
for ($i = 1; $i <= 1000; $i++)
mkdir('dir' . $i);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question