标签: python-3.x dictionary
我需要在嵌套字典中找到最大值,
data = {'violations': {'fatal': {'col1': 1, 'col2': 7, 'col3': 9}}}
所以如何在col1中的密钥col2,col3和data.violations.fatal中找到最大值。
col1
col2
col3
data.violations.fatal
答案 0 :(得分:4)
max(data['violations']['fatal'].values())