删除json文件中的一些行

时间:2015-04-21 13:50:32

标签: python json

我有一个json文件:

json file

我想删除此文件 中的某些行:

json file modify

如何使用python脚本执行此操作..?

1 个答案:

答案 0 :(得分:3)

import json
data = json.loads(open("input.json").read())
with open("output.json", "w") as outfile:
        json.dump(data["Stock"]["Vehicule"], outfile)