博观而约取,厚积而薄发。这篇文章主要讲述python 包之 JSON 轻量数据操作教程相关的知识,希望能为你提供帮助。
一、将对象转为json字符串
- json.dumps:将 python 对象编码成 JSON 字符串
- json.loads:将已编码的 JSON 字符串解码为 Python 对象
import json
data = https://www.songbingjia.com/android/[
name : autofelix, age : 27,
name : 飞兔, age : 26
]
result = json.dumps(data, ensure_ascii=False)
print(result)
二、格式化输出
import json
data = https://www.songbingjia.com/android/[
name : autofelix, age : 27,
name : 飞兔, age : 26
]
# 格式化输出
result = json.dumps(data, sort_keys=True, indent=4, separators=(,, : ))
print(result)
【python 包之 JSON 轻量数据操作教程】
三、将json字符串转为对象
import json
data = "https://www.songbingjia.com/android/[ 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 = https://www.songbingjia.com/android/[
name : autofelix, age : 27,
name : 飞兔, age : 26
]
result = demjson.encode(data)
print(result)
六、将json字符串转为对象
import demjson
data = "https://www.songbingjia.com/android/[ name : autofelix, age : 27,name : 飞兔, age : 26]"
result = demjson.decode(data)
print(result)
推荐阅读
- JavaEE之多线程01
- 一文了解异步编程基础
- 一文玩转Linux安装MySQL5.7.36
- PassJava 开源项目(十九)之 详解 Elasticsearch 初阶检索玩法
- 笔记|《Python程序设计与算法基础教程(第二版)》江红 余青松 课后选择题 课后填空题答案
- python|httprunner3,项目结构
- 基于Django的程序测试
- python|全国计算机等级考试二级Python真题及解析
- python|全国大学生计算机等级考试计算机二级python真题