提供这样的字典
testDict = {76: [4], 32: [2, 4, 7, 3], 56: [2, 58, 59]}
如何获取最长列表的密钥?在这种情况下,它将是32
。
答案 0 :(得分:12)
使用max
:
>>> max(testDict, key=lambda x:len(testDict[x]))
32
如果多个键包含最长列表:
我想获得多个密钥。
>>> testDict = {76: [4], 32: [2, 4, 7, 3], 56: [2, 58, 59], 10: [1, 2, 3, 4]}
>>> mx = max(len(x) for x in testDict.itervalues())
>>> [k for k, v in testDict.iteritems() if len(v)==mx]
[32, 10]