How deep?

Report a typo

Imagine you have a data structure with several nested objects like the one in the code below:

data_structure = [{
    "foo": [{
        "bar": [{
            "baz": [42]
        }]
    }]
}]

However, you want to see the first dictionary and the type of the first data structure within that dictionary.

Which one of the options below is correct?

Select one option from the list
___

Create a free account to access the full topic