我没有得到如何提取Key" name"的所有值。在下面的使用机器人框架的词典列表中。请帮帮我。
{'data': [{'attributes': {'name': 'Acura'},
'id': 'de3fe2a2-eaa1-45d8-8d6b-298e0b2d0666',
'type': 'brands'},
{'attributes': {'name': 'Alfa Romeo'},
'id': '52b33ad8-71ab-4fdb-b877-a6080e86439c',
'type': 'brands'},
{'attributes': {'name': 'Audi'},
'id': '5f627b7a-193a-40a0-9db7-b8b504177435',
'type': 'brands'},
{'attributes': {'name': 'BMW'},
'id': 'dad04367-2248-45b3-b523-0be7cc7bfbad',
'type': 'brands'},
{'attributes': {'name': 'Buick'},
'id': '64f77989-3007-41f5-b5c4-8cb5f4a25d45',
'type': 'brands'},
{'attributes': {'name': 'Cadillac'},
'id': 'a457ba4e-5f74-4b9a-9316-d26962284983',
'type': 'brands'},
{'attributes': {'name': 'Chevrolet'},
'id': '118e4876-993d-4ad0-91f4-ae3d25b1e5f5',
'type': 'brands'}],
'meta': {'total': 48}}
答案 0 :(得分:3)
你可以这样做,
>>> [ i['attributes']['name'] for i in a['data']]
['Acura', 'Alfa Romeo', 'Audi', 'BMW', 'Buick', 'Cadillac', 'Chevrolet']
其中a
是字典的名称。
答案 1 :(得分:3)
让d
是字典名称。可以使用以下代码提取名称:
names = [a['attributes']['name'] for a in d['data']]
结果:
print names
[u'Acura', u'Alfa Romeo', u'Audi', u'BMW', u'Buick', u'Cadillac', u'Chevrolet']
答案 2 :(得分:1)
在引用常规Python字典时,此SO question点符号问题。这是通过将常规Python Dict转换为机器人特定的DotDict来解决的。
或者,如果上述数据是静态的,您可以考虑从Yaml file导入它,这也允许您使用机器人点表示法。
关于循环和获取名称然后假设字典被分配给变量D并存储在名为dict.py
的文件中,那么这将允许您获取名称:
*** Settings ***
Variables dict.py
*** Test Cases ***
test
Log To Console \n
:FOR ${node} IN @{d['data']}
\ Log To Console ${node['attributes']['name']}
这将产生以下输出:
test
Acura
Alfa Romeo
Audi
BMW
Buick
Cadillac
Chevrolet
| PASS |