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

博观而约取,厚积而薄发。这篇文章主要讲述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)




    推荐阅读