python 包之 JSON 轻量数据操作教程

Posted autofelix

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 包之 JSON 轻量数据操作教程相关的知识,希望对你有一定的参考价值。

一、将对象转为json字符串

  • json.dumps:将 Python 对象编码成 JSON 字符串
  • json.loads:将已编码的 JSON 字符串解码为 Python 对象
import json

data = [
name : autofelix, age : 27,
name : 飞兔, age : 26
]

result = json.dumps(data, ensure_ascii=False)
print(result)


二、格式化输出

import json

data = [
name : autofelix, age : 27,
name : 飞兔, age : 26
]

# 格式化输出
result = json.dumps(data, sort_keys=True, indent=4, separators=(,, : ))
print(result)


三、将json字符串转为对象

import json

data = "[ name : autofelix, age : 27, name : 飞兔, age : 26]"

result = json.loads(data)
print(result)


四、安装demjson

  • 是 python 的第三方模块库,可用于编码和解码 JSON 数据
  • 包含了 JSONLint 的格式化及校验功能
pip install demjson


五、将对象转为json字符串

  • encode:将 Python 对象编码成 JSON 字符串
  • decode:将已编码的 JSON 字符串解码为 Python 对象
import demjson

data = [
name : autofelix, age : 27,
name : 飞兔, age : 26
]

result = demjson.encode(data)
print(result)


六、将json字符串转为对象

import demjson

data = "[ name : autofelix, age : 27, name : 飞兔, age : 26]"

result = demjson.decode(data)
print(result)


以上是关于python 包之 JSON 轻量数据操作教程的主要内容,如果未能解决你的问题,请参考以下文章

python 包之 mongodb 数据库操作教程

python 包之 redis 数据库操作教程

python 包之 blinker 信号库教程

python 包之 PyQuery 网页解析教程

python 包之 pywin32 操控 windows 系统教程

python教程之JSON文件数据存储的处理操作