如何在嵌套字典中访问 Keys/Names

How to access Keys/Names in nested Dictionaries

我有以下嵌套字典:

nested_dict = { 'dict1': {'fun1'     : {"a"        :1,
                                        "b"        :2},
                          'fun2'     : {"c"        :3,
                                        "d"        :4}
                'dict2': {'fun3'     : {"e"        :5,
                                        "f"        :6},
                          'fun4'     : {"g"        :7,
                                        "h"        :8}}}

我怎样才能提取例如name/key外层字典的“dict2”和嵌套字典的key/name“fun4”存储到其他变量“outerDictName”和“innerDictName”?

我检查了几个 post 这个主题,但无法找出正确的 way/syntax。

谢谢, 托比

keys1=list(nested_dict.keys())
keys2=list(nested_dict["dict1"].keys())