Home > Backend Development > Python Tutorial > python使用循环实现批量创建文件夹示例

python使用循环实现批量创建文件夹示例

WBOY
Release: 2016-06-16 08:44:50
Original
1946 people have browsed it

代码很简单,其中用到了python的sys模块,大家参考使用吧

复制代码 代码如下:

import os,sys
base = 'C:/'
i = 1
for j in range(100):
    file_name = base+str(i)
    os.mkdir(file_name)
    i=i+1
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template