在字典中查找最大值

时间:2016-05-25 11:48:10

标签: python-3.x dictionary

我需要在嵌套字典中找到最大值,

data = {'violations': {'fatal': {'col1': 1, 'col2': 7, 'col3': 9}}}

所以如何在col1中的密钥col2col3data.violations.fatal中找到最大值。

1 个答案:

答案 0 :(得分:4)

max(data['violations']['fatal'].values())