字典扁平化
习题:将以下字典扁平化,输出为 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}
标签:blog 练习 python target tar 练习题 输出 扁平化 get
习题:将以下字典扁平化,输出为 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}
标签:blog 练习 python target tar 练习题 输出 扁平化 get
原文地址:https://www.cnblogs.com/bolenzhang/p/8353233.html