标签 json 下的文章

Python操作json数据示例

# -*- coding: utf-8 -*- import json json_d = json.loads('{"status":"OK","msg":"Server is OK!"}') print json_d print json_d["status"] print json_d[...