这可能是 Python 中的一个经典问题,但我还没有找到答案。
我有一个字典列表,这些字典有相似的键。它看起来像这样:
[{0: myech.MatchingResponse at 0x10d6f7fd0,
3: myech.MatchingResponse at 0x10d9886d0,
6: myech.MatchingResponse at 0x10d6f7d90,
9: myech.MatchingResponse at 0x10d988ad0},
{0: myech.MatchingResponse at 0x10d6f7b10,
3: myech.MatchingResponse at 0x10d6f7f90>}]
我想获得一个以 [0,3,6,9] 作为键的新字典,并将“myech.MatchingResponse”列表作为值。
当然我可以使用一个简单的循环来做到这一点,但我想知道是否有更有效的解决方案。