On Fri, Mar 21 2014, lokesh bobby wrote:

> Hi ALL,
>
> Can you share your thoughts on how to parse a JSON file by using
> python?

import json

with open("data.json") as f:
     json.load(f)


[...]


-- 
Cordially,
Noufal
http://nibrahim.net.in
_______________________________________________
BangPypers mailing list
BangPypers@python.org
https://mail.python.org/mailman/listinfo/bangpypers

Reply via email to