如何在python中创建自定义词典?

时间:2016-11-15 03:49:43

标签: python arrays dictionary

我的资料来源:

setRotationComponents

这是我的一些代码:

"VirtualizationType": "hvm",
"Tags": [
         {
          "Value": "Test",
          "Key": "Name"
         }
        ]

我可以轻松导出 VirtualizationType 但无法使用标记

进行导出

1 个答案:

答案 0 :(得分:0)

如何在Python中创建字典的示例,来自docs

tel = {'jack': 4098, 'sape': 4139}

在此示例jack中,snape是键,40984139是值。

值也可以是字符串和字典列表,就像你的情况一样, 您的代码可以修改为:

dictionary = {"Virtualization Type" : "hvm", "Tags" : [{"Value" : "Test", "Key" : "Name"}] } #Runs in the python interpreter with no errors