JSON对象Python中的键顺序

时间:2017-01-12 05:43:42

标签: python json

我正在用python加载一个JSON,比如我的JSON数据是这样的:

{
    "data":{
        "0":{

        },
        "1":{

        },
        "2":{

        },
        "3":{

        },
        "4":{

        },
        "5":{

        }
    }
}

我的代码是这样的:

import json

with open('test.json') as data_file:    
    data = json.load(data_file)

print(data['data'].keys())

我的输出就是这个

enter image description here

正如你所看到的,键的顺序与原始顺序不同,我真的需要得到相同的顺序。但我不知道如何,谢谢你的帮助和对不起我的英语

0 个答案:

没有答案