Lets say I have a dictionary like this:
myDict = {
    1: {
        "a": "something",
        "b": [0, 1, 2],
        "c": ["a", "b", "c"]
    },
    2: {
        "a": "somethingElse",
        "b": [3, 4, 5],
        "c": ["d", "e", "f"]
    },
    3: {
        "a": "another",
        "b": [6, 7, 8],
        "c": ["g", "h", "i"]
    }
}
And this is my code:
for id, obj in myDict.items():
    for key, val in obj.items():
        if key is "b":
            for item in val:
                # apply some function to item
Is there a better way to iterate over a list inside a nested dict? Or is there a pythonic way to do this?
 
     
     
     
     
    