Python制作压缩炸弹

Python制作压缩炸弹

import os
from tqdm import tqdm	#进度条

def make_boom(file_path, file_num, string_len):
    if not os.path.exists(file_path):
        os.mkdir(file_path)
    os.chdir(file_path)
    for i in tqdm(range(file_num), desc='Progress'):
        with open('boom%d.txt' % i, 'w', encoding='utf-8') as f:
            f.write('Boom' * string_len)

make_boom('zip_boom', 1000, 100 * 100)  #名称-文件个数-倍数

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容