我有两个单独的 Python 列表,它们在各自的字典中有共同的键名。调用的第二个列表recordList
有多个具有相同键名的字典,我想附加第一个列表clientList
。以下是示例列表:
clientList = [{'client1': ['c1','f1']}, {'client2': ['c2','f2']}]
recordList = [{'client1': {'rec_1':['t1','s1']}}, {'client1': {'rec_2':['t2','s2']}}]
所以最终结果将是这样的,因此记录现在位于clientList
.
clientList = [{'client1': [['c1','f1'], [{'rec_1':['t1','s1']},{'rec_2':['t2','s2']}]]}, {'client2': [['c2','f2']]}]
看起来很简单,但我正在努力寻找一种方法来使用变量迭代这两个字典以找到它们匹配的位置。