摘要: 读取JSON文件可以用JSON库,示例代码:#coding:utf-8import jsonwith open("msg.json") as jsonfile: json_data = json.load(jsonfile) for key in json_data: va... 阅读全文
posted @ 2015-02-05 14:34 观海云不远 阅读(1632) 评论(0) 推荐(0)