On 2016-05-25, Daiyue Weng wrote:
> I want to find the maximal number of elements contained in a nested
> dictionary, e.g.
>
> data = {
> 'violations':
> {
> 'col1': {'err': [elem1, elem2, elem3]},
> 'col2': {'err': [elem1, elem2]}
> }
> }
Daiyue Weng writes:
> I want to find the maximal number of elements contained in a nested
> dictionary, e.g.
>
> data = {
> 'violations':
> {
> 'col1': {'err': [elem1, elem2, elem3]},
> 'col2': {'err': [elem1, elem2]}
> }
> }
>
> so to find
I want to find the maximal number of elements contained in a nested
dictionary, e.g.
data = {
'violations':
{
'col1': {'err': [elem1, elem2, elem3]},
'col2': {'err': [elem1, elem2]}
}
}
so to find the maximal number of elements in the list