I'm currently parsing through JSON as a quick example this is what it looks like:
Dictionary 1:
data:
    0:
        tag "importanttagone"
        value   233
    1:  
        tag "importanttagtwo"
        value   234
Dictionary 2:
data:
    0:
        name    "Important Tag One"
        tag     "importanttagone"
    1:
        name    "Important Tag Two"
        tag     "importanttagtwo"
So essentially what I want is to display the name and the value associated.
Expected Output:
Name: Important Tag On
Value: 233  
Is there a way to compare both tags in the dictionaries and then get the name that's within the same key as the tag?
 
     
     
     
    