python-字典有序并写入json文件

Posted pythonroad

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-字典有序并写入json文件相关的知识,希望对你有一定的参考价值。

大致流程:

  1. 导包---import collections
  2. 新建一个有序字典---collections.OrderedDict()
  3. 写入json文件
代码:
 1 import collections
 2 real_result = collections.OrderedDict()
 3 real_result["target"] = "total_result"
 4 real_result["key1"] = "value1"
 5 real_result["key2"] = "value2"
 6 real_result["key3"] = "value3"
 7 real_result_total = [real_result]
 8 print real_result_total
 9 
10 输出:[OrderedDict([(target, total_result), (key1, value1), (key2, value2), (key3, value3)])]
11 
12 current_dir = os.path.dirname(os.path.realpath(__file__))
13 path = os.path.join(os.path.join(current_dir, jsonfile), result_json)
14 with open(path, w) as f:
15     json.dump(real_result_total, f, encoding="utf-8", ensure_ascii=False, indent=4, separators=(,, :))

json文件:

技术图片

 

以上是关于python-字典有序并写入json文件的主要内容,如果未能解决你的问题,请参考以下文章

字典(JSON)数据写入文件并换行,Python

python写入json文件

Python 文件IO:JSON 文件的读取与写入

遍历 CSV 的每一行并使用 Python-Pandas 写入文件夹中的单个 JSON 文件

Python txt文件读取写入字典的方法(jsoneval)

解决Python 字典写入文件出行首行有空格的解决方法