摘要: 1.遍历目录 os.walk() import os for root, dirs, files in os.walk(path): for name in files: print(os.path.join(root, name)) for name in dirs: print(os.path. 阅读全文
posted @ 2019-06-14 17:20 无左无右 阅读(322) 评论(0) 推荐(0)
摘要: 1 阅读全文
posted @ 2019-06-14 15:03 无左无右 阅读(1113) 评论(0) 推荐(0)