All the answers I found to this seem to make you have to specify which key you want to find the max/min for e.g. Finding minimum values in a list of dicts.
I have a list of dicts like:
[
{
1:34,
2:12,
3:24
},
{
1:121,
2:1211,
3:1891
},
{
1:191,
2:8991,
3:3232
}
]
So here it would pull out 12 and 8991.
And I want to find the max and min of all the values in this list of dicts.
How do I do this without having to specify each key separately (e.g. 1,2,3) - in the real version I have 20+.