JSON

Python JSON序列化

字号+ 作者:H5之家 来源:H5之家 2016-11-10 11:00 我要评论( )

Python JSON序列化 Python JSON序列化,有需要的朋友可以参考下。 Python JSON序列化 import json# dict to jsond=dict(name=cui,age=20,score=88)print json.dumps(d)#list to jsonl=[cui,20,88]print json.dumps(l)#object to jsonclass Student(object):d

Python JSON序列化

Python JSON序列化,有需要的朋友可以参考下。




Python JSON序列化


import json # dict to json d=dict(name="cui",age=20,score=88) print json.dumps(d) #list to json l=["cui",20,88] print json.dumps(l) #object to json class Student(object): """docstring for Student""" def __init__(self): super(Student, self).__init__() self.age=20 self.name="cui" self.score=88 print json.dumps(Student(),default=lambda obj:obj.__dict__) #json to dict json_str='{"age": 20, "score": 88, "name": "cui"}' d= json.loads(json_str) print d #json to list json_str='["cui", 20, 88]' l=json.loads(json_str) print l #json to object json_str='{"age": 20, "score": 88, "name": "cui"}' def dict2Student(d): s=Student() s.name=d["name"] s.age=d["age"] s.score=d["score"] return s student=json.loads(json_str,object_hook=dict2Student)





 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • jQuery ajax json 数据的遍历代码

    jQuery ajax json 数据的遍历代码

    2016-11-10 12:00

  • 12.Swift JSON 和 PList

    12.Swift JSON 和 PList

    2016-11-10 10:02

  • JQuery遍历json数组的3种方法

    JQuery遍历json数组的3种方法

    2016-11-06 11:00

  • php 中利用json_encode和json_decode传递包含特殊字符的数据

    php 中利用json_encode和json_decode传递包含特殊字符的数据

    2016-11-06 10:00

网友点评