Python [习题] 字典扁平化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python [习题] 字典扁平化相关的知识,希望对你有一定的参考价值。
习题: 将以下字典扁平化,输出为 target 字典格式
source = {‘a‘: {‘b‘: 1, ‘c‘: 2}, ‘d‘: {‘e‘: 3, ‘f‘: {‘g‘: 4}}}
target = {‘a.b‘: 1, ‘d.f.g‘: 4, ‘d.e‘: 3, ‘a.c‘: 2}
source = {‘a‘: {‘b‘: 1, ‘c‘: 2}, ‘d‘: {‘e‘: 3, ‘f‘: {‘g‘: 4}}} target = {} def flatmap(srcDic, targetKey=‘‘): for k, v in srcDic.items(): if isinstance(v, dict): flatmap(v, targetKey=targetKey + k + ‘.‘) else: target[targetKey + k] = v flatmap(source) print(target)
知识点:递归,isinstance
使用递归、isinstance,判断 value 是否是字典类型,如果不是,则合并key 名称写入新字典。
以上是关于Python [习题] 字典扁平化的主要内容,如果未能解决你的问题,请参考以下文章