标签: python json
我有一个json文件:
我想删除此文件 中的某些行:
如何使用python脚本执行此操作..?
答案 0 :(得分:3)
import json data = json.loads(open("input.json").read()) with open("output.json", "w") as outfile: json.dump(data["Stock"]["Vehicule"], outfile)