Python写json格式的文件到txt
工作上遇到son数据的处理,写到txt文件里,再load到hive表的需求。记录两种方法:1. 遍历,再逐行写入:import json#读取json文件,提取诗词内容逐行放入txt文档with open("./poem.json", 'r', encoding='utf-8') as f: temp = json.loads(f.read()) for item in...