给这样的字典

testDict = {76: [4], 32: [2, 4, 7, 3], 56: [2, 58, 59]}

如何获得最长列表的 key ?在这种情况下,它将是32

最佳答案

使用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]

关于python - 列为字典中的值,获取最长列表的键,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19845258/

10-09 21:47