第二章-数据加载
一、读取文本格式数据
第二章_8086的指令系统
面向对象
面向对象
有序遍历文件夹
按数字从小到大遍历文件夹
1 | for root, _, images in tqdm(sorted(os.walk(src_path))) |
按数字从小到大遍历文件
1 | for image in sorted(images, key=lambda x : int(os.path.splitext(x)[0])) |
sorted()中
images作用:待排序的列表
key表示sorted中用于排序的规则
匿名函数:lambda x : int(os.path.splitext(x)[0])