要列出的Python字典子元素

时间:2016-03-05 03:51:16

标签: python list variables dictionary

我有一个如下字典:

d = {"result": {"page": "1", "games": {"game": {"id": "2016", "name": "Exemple"}}}}

我想在列表中对d['result']['games']['game']的所有子值进行分组,例如:

d = {"result": {"page": "1", "games": {"game": [{"id": "2016", "name": "Exemple"}]}}}

如何以编程方式执行此操作,修改我的dict变量?

1 个答案:

答案 0 :(得分:0)

d['result']['games']['game'] = [d['result']['games']['game']]

如果你想添加另一个元素

d['result']['games']['game'].append({some other dict})