gpt4 book ai didi

python - 如何将元组列表转换为 Python 中的字典字典?

转载 作者:太空狗 更新时间:2023-10-30 00:23:22 24 4
gpt4 key购买 nike

我有一个元组列表,例如:

[(1, 'a', 22), (2, 'b', 56), (1, 'b', 34), (2, 'c', 78), (3, 'd', 47)]

我需要将其转换为:

{1: {'a': 22, 'b': 34}, 2: {'b': 56, 'c': 78}, 3: {'d': 47}}

这在 Python 中可行吗?谢谢!

最佳答案

使用 defaultdict :

from collections import defaultdict

l = [(1, 'a', 22), (2, 'b', 56), (1, 'b', 34), (2, 'c', 78), (3, 'd', 47)]

d = defaultdict(dict)
for x, y, z in l:
d[x][y] = z

关于python - 如何将元组列表转换为 Python 中的字典字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36969921/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com