Aggregate Python lists stored as values in a nested dictionary into one list for arbitrary levels [duplicate]

你离开我真会死。 提交于 2019-12-07 07:52:34

You can use recursion:

nested_dict = {1 : {'a' :[1,2,3], 'b': [4,5]}, 2 : {'a' : [6], 'b' : [7,8,9]}}
def get_lists(d):
   r = [b if isinstance(b, list) else get_lists(b) for b in d.values()]
   return [i for b in r for i in b]

Output:

[1, 2, 3, 4, 5, 6, 7, 8, 9]
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!