摘要:
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... 阅读全文
摘要:
以从某文件夹过滤出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 阅读全文