Python中字典和JSON互转操作实例
投稿:junjie
这篇文章主要介绍了Python中字典和JSON互转操作实例,本文给出了Dict转JSON、读取JSON并转为Dict示例,需要的朋友可以参考下
JSON是一种轻量级的数据交换格式,各种语言都有良好的支持。字典是Python的一种数据结构。可以看成关联数组。
有些时候我们需要设计到字典转换成JSON序列化到文件,或者从文件中读取JSON。简单备忘一下。
Dict转JSON写入文件
复制代码 代码如下:
#!/usr/bin/env python
# coding=utf-8
import json
d = {'first': 'One', 'second':2}
json.dump(d, open('/tmp/result.txt', 'w'))
写入结果
复制代码 代码如下:
cat /tmp/result.txt
{"second": 2, "first": "One"}
读取JSON
复制代码 代码如下:
#!/usr/bin/env python
# coding=utf-8
import json
d = json.load(open('/tmp/result.txt','r'))
print d, type(d)
运行结果
复制代码 代码如下:
{u'second': 2, u'first': u'One'} <type 'dict'>
其他
PS:关于json操作,这里再为大家推荐几款比较实用的json在线工具供大家参考使用:
在线JSON代码检验、检验、美化、格式化工具:
http://tools.jb51.net/code/json
JSON在线格式化工具:
http://tools.jb51.net/code/jsonformat
在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson
json代码在线格式化/美化/压缩/编辑/转换工具:
http://tools.jb51.net/code/jsoncodeformat
在线json压缩/转义工具:
http://tools.jb51.net/code/json_yasuo_trans
C语言风格/HTML/CSS/json代码格式化美化工具:
http://tools.jb51.net/code/ccode_html_css_json
您可能感兴趣的文章:
- Python xml、字典、json、类四种数据类型如何实现互相转换
- 使用Python解析JSON数据的基本方法
- python中报错"json.decoder.JSONDecodeError: Expecting value:"的解决
- Python操作json数据的一个简单例子
- Python解析json时提示“string indices must be integers”问题解决方法
- Python解析json之ValueError: Expecting property name enclosed in double quotes: line 1 column 2(char 1)
- Python中json.dumps()函数的使用解析
- Python Json模块中dumps、loads、dump、load函数介绍
- python中将字典转换成其json字符串
- python将字符串转换成json的方法小结
- Python中数据类转换为JSON的方法详解