11 2020 档案

摘要:import osfilePath = 'E:\\python\\merge_json\\DATA\\'# for root,dirs,files in os.listdir(filePath):# print(root,dirs)# print(files)#root当前目录路径#dirs 当前路 阅读全文
posted @ 2020-11-23 15:08 fyangq 阅读(98) 评论(0) 推荐(0)
摘要:import codes,jsondef write_json(json_name): with codecs.open(json_name, "w", "utf-8") as f: d=json.dumps(data_new, indent=4, ensure_ascii=False) f.wri 阅读全文
posted @ 2020-11-10 16:23 fyangq