I have an array of dictionaries. Each dictionary has an "id" as its key and a corresponding list attached to it.
I want to iterate over the list of dictionaries and access the first liste item from each dictionary's value.
As an idea , the data structure is as follows:
[ {"abc": [1,2,3]}, {"def":[4,5,6]} ]
I'd want to iterate through and get [1,4]