列表中的意外随机顺序

时间:2019-06-27 06:34:21

标签: python list

我正在尝试使用JSON对象的数据构建列表。但是,列表的顺序与JSON对象的顺序不匹配,并且几乎在每次运行代码时都会更改。

{
    "project":{
        "Projektnamen":{
            "Server":{
                "Server1":{
                    ...
                },
                "Server2":{
                    ...
                },
                "Server3":{
                    ...
                }
            }
        }
    }
}
with open('json_data.json') as json_file:
    # json CONFIG_JSON Konfigurationsdatei
    CONFIG_JSON = json.load(json_file)

for key in CONFIG_JSON["project"]["Projektnamen"]["Server"]:
    servernamen.append(key)

预期结果:servernamen = [Server1,Server2,Server3]

但是顺序总是在变化。 最后结果:servernamen = [Server3,Server1,Server2]

2 个答案:

答案 0 :(得分:1)

您可以导入已经使用collections.OrderedDictjson.load的参数进行排序的JSON数据:

from collections import OrderedDict
import json


r = json.load(open('json_data.json'), object_pairs_hook=OrderedDict)

答案 1 :(得分:0)

json.loads将JSON反序列化为字典对象,该对象是未排序的哈希表。

您可以使用OrderedDict中的collections对键进行排序。 例子

from collections import OrderedDict

d = {'banana': 3, 'apple':4, 'pear': 1, 'orange': 2}
new_d = OrderedDict(sorted(d.items()))

print(new_d)
# OrderedDict([('apple', 4), ('banana', 3), ('orange', 2), ('pear', 1)])