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__)
运行结果:
文消源册亩件拿姿态夹A和文件夹B里面各放一个空白的__init__.py文件,就可以在脚本文件夹里引用里面的testA1或testB1模块及模块里的类和方法了。
touch 文件夹A/__init__.py 文件夹B/__init__.py欢迎分享,转载请注明来源:内存溢出
评论列表(0条)