如何在python中维护字典中的插入顺序?

时间:2017-03-14 20:41:19

标签: python-2.7 dictionary

我有字典,我想维持插入顺序。我怎么能这样做?

    nested_dict = {
        "name" :"Your Name",
        "age" : "Your Age",
        "contact" : {
            "Street" : "Your Street",
            "State" : "Your home state",
            "Phone" : "Your Phone Number"
        }
    }
    print(nested_dict)

这是我从第一次尝试得到的输出: {'联系':{'街':'你的街','州':'你的家乡','电话':'你的电话号码'},'名字':'你的名字','年龄':'你的年龄'}

第二次尝试输出: {'name':'Your Name','contact':{'Street':'Your Street','Phone':'Your Phone Number','State':'your home state'},'age':'你的年龄'}

0 个答案:

没有答案