选择具有相同长度值的键,这是字典中的最高计数列表

时间:2018-05-23 09:08:58

标签: python python-3.x numpy dictionary defaultdict

我有一个排序defaultdict喜欢:

k = {'a':[3,4,5] , 'x':[5,4,11] , 'c':[1,3,4] , 'l': [2,3], 'h':[1]}

我想要的只是获得具有最高或higesht相等长度值的键。

预期产出:

{'a':[3,4,5] , 'x':[5,4,11] , 'c':[1,3,4]} or [a,b,c]

我使用numpy在数组中获取真值,然后将其提取出来 我的代码:

z = np.array(arr)     #arr variable has the size of lists i.e arr = [3,3,3,2,1]
    p = len(z[z == z[0]])    #To Check how many highest count is SAME and store the count in p variable
    print(z >= z[0])
    print(list(k)[0:p])

输出: -

True True True False False

[a,x,c]

所以我的问题是,有没有办法在不使用numpy的情况下做到这一点?

1 个答案:

答案 0 :(得分:0)

一种方法是计算最大长度,然后使用字典理解。

d = {'a':[3,4,5] , 'x':[5,4,11] , 'c':[1,3,4] , 'l': [2,3], 'h':[1]}

max_len = max(map(len, d.values()))

res = {k: v for k, v in d.items() if len(v) == max_len}

print(res)

{'a': [3, 4, 5], 'x': [5, 4, 11], 'c': [1, 3, 4]}