Python:在元组中为每个字段名获取最大的{(元组):值}字典

时间:2011-03-21 16:22:05

标签: python list dictionary max tuples

另一个列表字典问题。

我有一个dict,如下所示:列表中的单元名和测试名:

dictA = {('unit1', 'test1'): 10,  ('unit2', 'test1'): 78,  ('unit2', 'test2'): 2, ('unit1', 'test2'): 45}

units = ['unit1', 'unit2'] 
testnames = ['test1','test2']

我们如何在测试名中找到每个测试的最大值:

我尝试如下:

def max(dict, testnames_array):
    maxdict = {}
    maxlist = []
    temp = []
    for testname in testnames_array:
        for (xunit, xtestname), value in dict.items():
            if xtestname == testname:
                if not isinstance(value, str):
                    temp.append(value)
            temp = filter(None, temp)
            stats = corestats.Stats(temp) 
            k = stats.max() #finds the max of a list using another module
            maxdict[testname] = k
    maxlist.append(maxdict)
    maxlist.insert(0,{'Type':'MAX'})
    return maxlist

现在问题是我得到输出:

[{'Type':'MAX'}, {'test1': xx}, {'test2':xx}]

其中xx全部返回为相同的值!!

我的错在哪里? 任何更简单的方法? 请指教。谢谢。

2 个答案:

答案 0 :(得分:6)

>>> dictA = {('unit1', 'test1'): 10,  ('unit2', 'test1'): 78,  ('unit2', 'test2'): 2, ('unit1', 'test2'): 45}
>>> maxDict={}
>>> for (unitName,testName),grade in dictA.items():
    maxDict[testName]=max(maxDict.get(testName,0),grade)


>>> maxDict
{'test1': 78, 'test2': 45}

我想这应该解决它。

答案 1 :(得分:0)

dictA = {('unit1', 'test1'): 10,  ('unit2', 'test1'): 78,  ('unit2', 'test2'): 2, ('unit1', 'test2'): 45}

def maxIndex(d, field=0):
    best = {}
    for k,v in d.iteritems():
        index = k[field]
        try:
            old_v = best[index]
            best[index] = max(v, old_v)
        except KeyError:
            best[index] = v
    return best

maxIndex(dictA, 0)  # -> {'unit1': 45, 'unit2': 78}
maxIndex(dictA, 1)  # -> {'test1': 78, 'test2': 45}