摘要: import os f = open("./name_test.txt", 'w') # 先创建一个空的文本 f_jpg = open("./name_jpg.txt", 'w') f_txt = open("./name_txt.txt", 'w') path = "./jzchina4/" # 指定需要读取文件的目录' files = os.listdir(path) # 采用lis... 阅读全文
posted @ 2018-12-15 10:29 快乐多巴胺 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 以从某文件夹过滤出py文件为例: 法1: import glob import os os.chdir(“./”) for file in glob.glob(“*.py”): print file 法2: for file in os.listdir(“./”): if file.endswith 阅读全文
posted @ 2018-12-15 09:22 快乐多巴胺 阅读(2482) 评论(0) 推荐(0) 编辑