我的资料来源:
setRotationComponents
这是我的一些代码:
"VirtualizationType": "hvm",
"Tags": [
{
"Value": "Test",
"Key": "Name"
}
]
我可以轻松导出 VirtualizationType 但无法使用标记
进行导出答案 0 :(得分:0)
如何在Python中创建字典的示例,来自docs:
tel = {'jack': 4098, 'sape': 4139}
在此示例jack
中,snape
是键,4098
,4139
是值。
值也可以是字符串和字典列表,就像你的情况一样, 您的代码可以修改为:
dictionary = {"Virtualization Type" : "hvm", "Tags" : [{"Value" : "Test", "Key" : "Name"}] } #Runs in the python interpreter with no errors