码迷,mamicode.com
首页 > Web开发 > 详细

JSON数据提取

时间:2018-09-12 01:21:59      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:coding   方便   dict   rip   ascii   string   格式   open   highlight   

JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式,它使得人们很容易的进行阅读和编写。同时也方便了机器进行解析和生成。JSON在数据交换中起到了一个载体的作用,承载着相互传递的数据。JSON适用于进行数据交互的场景,比如网站前台与后台之间的数据交互。

 json模块是Python自带的模块,Python3 中可以使用 json 模块来对 JSON 数据进行编解码:

  • json.dumps(): 对数据进行编码。
  • json.loads(): 对数据进行解码。

 技术分享图片

 

Python 数据类型编码为 JSON数据类型:

PythonJSON
dict object
list, tuple array
str string
int, float, int- & float-derived Enums number
True true
False false
None null

JSON数据类型 解码为 Python 数据类型:

JSONPython
object dict
array list
string str
number (int) int
number (real) float
true True
false False
null None

ipython3交互环境测试代码:

技术分享图片

 

with open("test.json", ‘w‘, encoding=‘utf8‘) as f:
    json.dump(dic, f)

技术分享图片

with open("test.json", ‘w‘, encoding=‘utf8‘) as f:
    json.dump(dic, f, ensure_ascii=False, indent=2) 

技术分享图片

 

JSON数据提取

标签:coding   方便   dict   rip   ascii   string   格式   open   highlight   

原文地址:https://www.cnblogs.com/Chan94/p/9496948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!