python2.7入门---JSON

    此次咱们来看如何使用 Python 语言来编码和解码 JSON 对象。首先,咱们得了解,JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式,易于人阅读和编写。而后呢,使用 JSON 函数须要导入 json 库:import jsonhtml

 

函数 描述
json.dumps 将 Python 对象编码成 JSON 字符串
json.loads 将已编码的 JSON 字符串解码为 Python 对象

    json.dumps 用于将 Python 对象编码成 JSON 字符串。看下语法:python

 

json.dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, encoding="utf-8", default=None, sort_keys=False, **kw)

    如下为实例:git

 

#!/usr/bin/python import json data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ] json = json.dumps(data) print json

    以上代码执行结果为:github

 

[{"a": 1, "c": 3, "b": 2, "e": 5, "d": 4}]

    使用参数让 JSON 数据格式化输出:json

 

>>> import json >>> print json.dumps({'a': 'luyaran', 'b': 7}, sort_keys=True, indent=4, separators=(',', ': ')) { "a": "luyaran", "b": 7 }

    咱们来看python 原始类型向 json 类型的转化对照表:数组

 

Python JSON
dict object
list, tuple array
str, unicode string
int, long, float number
True true
False false
None null

    json.loads 用于解码 JSON 数据。该函数返回 Python 字段的数据类型。看下语法:函数

 

json.loads(s[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, object_pairs_hook[, **kw]]]]]]]])

    如下实例展现了Python 如何解码 JSON 对象:编码

 

#!/usr/bin/python import json jsonData = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; text = json.loads(jsonData) print text

    以上代码执行结果为:spa

 

{u'a': 1, u'c': 3, u'b': 2, u'e': 5, u'd': 4}

    来看下json 类型转换到 python 的类型对照表:.net

 

JSON Python
object dict
array list
string unicode
number (int) int, long
number (real) float
true True
false False
null None

    想看更多内容参考:https://docs.python.org/2/library/json.html。而后咱们来看第三方库。Demjson 是 python 的第三方模块库,可用于编码和解码 JSON 数据,包含了 JSONLint 的格式化及校验功能。Github 地址:https://github.com/dmeranda/demjson。官方地址:http://deron.meranda.us/python/demjson/。在使用 Demjson 编码或解码 JSON 数据前,咱们须要先安装 Demjson 模块:

 

$ tar -xvzf demjson-2.2.3.tar.gz $ cd demjson-2.2.3 $ python setup.py install

    更多安装介绍查看:http://deron.meranda.us/python/demjson/install

    看下json函数表单:

 

函数 描述
encode 将 Python 对象编码成 JSON 字符串
decode 将已编码的 JSON 字符串解码为 Python 对象

    Python encode() 函数用于将 Python 对象编码成 JSON 字符串。看下语法:

 

demjson.encode(self, obj, nest_level=0)

    如下实例将数组编码为 JSON 格式数据:

 

#!/usr/bin/python import demjson data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ] json = demjson.encode(data) print json

    以上代码执行结果为:

 

[{"a":1,"b":2,"c":3,"d":4,"e":5}]

    Python 能够使用 demjson.decode() 函数解码 JSON 数据。该函数返回 Python 字段的数据类型。看下语法:

 

demjson.decode(self, txt)

    如下实例展现了Python 如何解码 JSON 对象:

 

#!/usr/bin/python import demjson json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; text = demjson.decode(json) print text

    以上代码执行结果为:

 

{u'a': 1, u'c': 3, u'b': 2, u'e': 5, u'd': 4}

    好啦,由于这部分比较简单,因此就不作过多的赘述了。若是感受不错的话,请多多点赞支持哦。。。

  原文连接:https://blog.csdn.net/luyaran/article/details/80005582

相关文章
相关标签/搜索