how to compare below 2 json structure in python

hisan santosh.ssit at gmail.com
Thu Jun 21 14:16:49 EDT 2012


sample_json1={{
       "globalControlId": 72,
       "value": 0,
       "controlId": 2
   },
   {
       "globalControlId": 77,
       "value": 3,
       "controlId": 7
   }
}

sample_json2={
   {
       "globalControlId": 77,
       "value": 3,
       "controlId": 7
   },
    {
       "globalControlId": 72,
       "value": 0,
       "controlId": 2
   }
}



More information about the Python-list mailing list