PHP前端开发

python如何随机读取目录文件

百变鹏仔 3小时前 #Python
文章标签 文件
python随机读取目录文件的方法是使用python的模块【random argparse shutil】读取即可,其代码语句为【for x in os.listdir(path),if x.endswith('jpg')】。

python随机读取目录文件的方法:

使用python模块:random argparse shutil

import argparseparser = argparse.ArgumentParser()parser.add_argument('num',type=int,help="img numbers to random")args = parser.parse_args()import randomimport ospath="/home/train/disk/data/yulan_park_expand"imgs = []for x in os.listdir(path):    if x.endswith('jpg'):imgs.append(x)selected_imgs=random.sample(imgs,k=args.num)print(selected_imgs)from shutil import copyfilefor img in selected_imgs:    src=os.path.join(path,img)    dst=os.path.join(path,"../for_bitmain/"+img)        copyfile(src,dst)print("copy done")

相关学习推荐:python教程