python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > JSON 轻量数据操作

python 包实现JSON 轻量数据操作

作者:autofelix

这篇文章主要介绍了python 包实现JSON 轻量数据操作,文章介绍内容首先将对象转为json字符串展开主题详细内容需要的小伙伴可以参考一下

一、将对象转为json字符串

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

pip install demjson

五、将对象转为json字符串

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 轻量数据操作教程的文章就介绍到这了,更多相关JSON 轻量数据操作内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文