How to append in a json file in Python?

后端 未结 3 1279
无人及你
无人及你 2020-12-01 06:14

I have the a json file whose contents is {\"67790\": {\"1\": {\"kwh\": 319.4}}}. Now I create a dictionary a_dict which I need to append it into th

3条回答
  •  情歌与酒
    2020-12-01 06:45

    You need to update the output of json.load with a_dict and then dump the result. And you cannot append to the file but you need to overwrite it.

提交回复
热议问题