How to parse json data in Python?

Posted by backcross on Stack Overflow See other posts from Stack Overflow or by backcross
Published on 2014-06-04T09:17:05Z Indexed on 2014/06/04 9:24 UTC
Read the original article Hit count: 241

Filed under:
|

Please help me to parse this json in python.

{ "IT" : [   
                            { "firstName" : "ajay",  
                              "lastName"  : "stha",
                              "age"       : 24 },

                            { "firstName" : "Michiel",  
                              "lastName"  : "Og",
                              "age"       : 35 }
                          ],                            
          "sales"       : [ 
                            { "firstName" : "Guru", 
                              "lastName"  : "red",
                              "age"       : 27 },

                            { "firstName" : "Jim",   
                              "lastName"  : "Galley",
                              "age"       : 34 }
                          ] 
        } 

How to parse this json in Python?Please help me

© Stack Overflow or respective owner

Related posts about python

Related posts about JSON