python之 json模块

Posted zrs009

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之 json模块相关的知识,希望对你有一定的参考价值。

  

import  json

data={
"no":1,
"name":"Runoob",
"url":"http://www.runoob.com"
}

json_str=json.dumps(data) # json.dumps() 函数对数据进行编码,将其转换成为json格式的数据
print("python 原始数据:",repr(data))
print("python json 数据:",json_str)
python_data=json.loads(json_str) # json.loads() 函数就是讲json格式的数据解码转换成为python对应格式的数据
print(python_data)


输出对应的结果:

python 原始数据: {‘no‘: 1, ‘name‘: ‘Runoob‘, ‘url‘: ‘http://www.runoob.com‘}


python json 数据: {"no": 1, "name": "Runoob", "url": "http://www.runoob.com"}


{‘no‘: 1, ‘name‘: ‘Runoob‘, ‘url‘: ‘http://www.runoob.com‘}

 

 

 

# 这个是 讲格式化的数据写入文件之中和读取文件之中的数据
f=open("data.txt","w",encoding="utf-8")
f.write(json.dumps(data))
f.close()
f1=open("data.txt","r",encoding="utf-8")
f1=f1.read()
json_str1=json.loads(f1)
print("-----")
print(json_str1)


























以上是关于python之 json模块的主要内容,如果未能解决你的问题,请参考以下文章

Python 之 Json模块使用

python之基础篇——模块与包

jjson - 支持注释的 json 和 javascript 对象解析之 Python 模块

jjson - 支持注释的 json 和 javascript 对象解析之 Python 模块

jjson - 支持注释的 json 和 javascript 对象解析之 Python 模块

python 标准模块之json 模块