码迷,mamicode.com
首页 > 编程语言 > 详细

Python字典(dict)与json数据格式的区别和联系

时间:2018-10-31 01:08:48      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:比较   python   联系   格式   height   数据类型   区别   typeerror   列表   

在学习Python的时候,我们学习到,Python3 的标准数据类型有:

  数字(Number)

  字符串(String)

  列表(List)

  元组(Tumple)

  集合(Set)

  字典(Dictionary)

发现字典和json数据格式有点像。接下来比较一下两者的异同。

  1. python dict 字符串用单引号,json强制规定双引号。
  2. python dict 里可以嵌套tuple, json里只有arrayjson.dumps({1:2}) 的结果是 {“1”:2},而python中的json模块函数:json.dumps((1,2)) 的结果是[1,2]
  3. json key name 必须是字符串, python 是hashable, {(1,2):1} 在python里是合法的,因为tuple是hashable type;{[1,2]:1} 在python里TypeError: unhashable “list”
  4. json: true false null ;python:,True False None
  5. Python中提供了json.loads()转换函数,方便json数据的调用。

    技术分享图片

     

Python字典(dict)与json数据格式的区别和联系

标签:比较   python   联系   格式   height   数据类型   区别   typeerror   列表   

原文地址:https://www.cnblogs.com/yanzhaoyao/p/9880382.html

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