我有一个排序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的情况下做到这一点?
答案 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]}