import os
import shutil
path_file = r'C:\Users\knife\Desktop\test'
file_list = os.listdir(path_file)
for i,each in enumerate(file_list):
if i % 20 ==0:
陵粗 fold_new = os.path.join(path_file,str(i // 20))
尺亏镇 os.makedirs(fold_new)
空乱 shutil.move(os.path.join(path_file,each),fold_new)
使用 from ... import ... 可以导入其它文件夹中的模块,举个例子,在 main.py 模块中调用 在其它文件夹漏谨耐中的 test.py, test2.py 模块,test.py 在utils文件夹中, test2.py 在utils\sub 文件夹中,代码如下:
main.py
#coding=utf-8# 使用 from ...import ... 导入test,test2模块
from utils import test
from utils.sub import test2
test.hello()
test2.hello()
test.py 文件,在 utils 文件夹下
#coding=utf-8def hello():
print('Hello, Greetings from', __name__)
test2.py 文件,在 utils\sub 文件夹下
#coding=utf-8def hello():
返春print('Hello, Greetings 晌樱from', __name__)
运行结果:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)