gpt4 book ai didi

python - 根据其值的类型处理字典,并使用字典理解生成另一个字典

转载 作者:行者123 更新时间:2023-11-28 17:25:49 26 4
gpt4 key购买 nike

输入字典

{11: [1, 2], 23: 'ewewe', 3: [4], 41: 5, 55: 6}

我需要根据输入字典中的项目类型形成另一个字典,就像:-

{type: list of keys which has this type}

预期的输出是

{<type 'list'>: [11, 3], <type 'str'>: [23], <type 'int'>: [41, 55]}

我为此编写了以下代码:-

input_dict = {1: [1, 2], 2: 'ewewe', 3: [4], 4: 5, 5: 6}
>>> d = {}
>>> seen = []
for key,val in input_dict.items():
if type(val) in seen:
d[type(val)].append(key)
else:
seen.append(type(val))
d[type(val)] = [key]
>>> d
{<type 'list'>: [1, 3], <type 'str'>: [2], <type 'int'>: [4, 5]}

我正在尝试用字典理解替换上面的代码,我花了几个小时后做不到,任何帮助将不胜感激。提前致谢...

最佳答案

你不能用字典理解来做到这一点(只有一个),而不是作为一种更 pythonic 的方式,你可以使用 collections.defaultdict():

>>> from collections import defaultdict
>>> d = defaultdict(list)
>>>
>>> test = {11: [1, 2], 23: 'ewewe', 3: [4], 41: 5, 55: 6}
>>>
>>> for i, j in test.items():
... d[type(j)].append(i)
...
>>> d
defaultdict(<type 'list'>, {<type 'list'>: [3, 11], <type 'str'>: [23], <type 'int'>: [41, 55]})
>>>

关于python - 根据其值的类型处理字典,并使用字典理解生成另一个字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39184703/

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