1 介绍
年份:2019
期刊: 2019CVPR
引用量:611
Dhar P, Singh R V, Peng K C, et al. Learning without memorizing[C]//Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. 2019: 5138-5146.
本文提…
目标:取json中所有的Name、Age字典
思路:递归处理字典中直接包含子字典的情况,
import jsondef find_targ_dicts(data,key1,key2):result {}if isinstance(data, dict):if key1 in data and key2 in data: # 第一层字典中包含key1和key2re…