我有以下格式的python字典:
d =
{
'category' :
{
'genre': <int_value>
}
}
我想<int_value>
在原始字典中找到最小的,以及它的“路径”。
例如,如果
d =
{
'free':
{
'adventure' : 23,
'arcade' : 101,
},
'paid':
{
'arcade' : 130,
}
}
...结果应该是("free", "adventure", 23)
。
任何人都可以为此想到一个单行字吗?
提前致谢!