python如何随机读取目录文件
发布时间:2020年10月29日 19:49:53
来源:环球青藤
点击量:539
【摘要】python随机读取目录文件的方法是使用python的模块【random argparse shutil】读取即可,其代码语句为【for x in os pstdir(path),if
python随机读取目录文件的方法是使用python的模块【random argparse shutil】读取即可,其代码语句为【for x in os.pstdir(path),if x.endswith('jpg')】。
python随机读取目录文件的方法:
使用python模块:random argparse shutil
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('num',type=int,help="img numbers to random")
args = parser.parse_args()
import random
import os
path="/home/train/disk/data/yulan_park_expand"
imgs = []
for x in os.pstdir(path):
if x.endswith('jpg'):
imgs.append(x)
selected_imgs=random.sample(imgs,k=args.num)
print(selected_imgs)
from shutil import copyfile
for 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教程
以上就是小编分享的关于python如何随机读取目录文件的详细内容希望对大家有所帮助,更多有关python教程请关注环球青藤其它相关文章!
上一篇:怎么查看python版本?
下一篇:关于Pyzmq介绍
就业培训申请领取
环球青藤
官方QQ群扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群
最新文章
Python编程各地入口
环球青藤官方微信服务平台
刷题看课 APP下载
免费直播 一键购课
代报名等人工服务
Python编程热点排行