(转)Python JSON序列化

  1. import json
  2. # dict to json
  3. d=dict(name="cui",age=20,score=88)
  4. print json.dumps(d)
  5. #list to json
  6. l=["cui",20,88]
  7. print json.dumps(l)
  8. #object to json
  9. class Student(object):
  10. """docstring for Student"""
  11. def __init__(self):
  12. super(Student, self).__init__()
  13. self.age=20
  14. self.name="cui"
  15. self.score=88
  16. print json.dumps(Student(),default=lambda obj:obj.__dict__)
  17. #json to dict
  18. json_str='{"age": 20, "score": 88, "name": "cui"}'
  19. d= json.loads(json_str)
  20. print d
  21. #json to list
  22. json_str='["cui", 20, 88]'
  23. l=json.loads(json_str)
  24. print l
  25. #json to object
  26. json_str='{"age": 20, "score": 88, "name": "cui"}'
  27. def dict2Student(d):
  28. s=Student()
  29. s.name=d["name"]
  30. s.age=d["age"]
  31. s.score=d["score"]
  32. return s
  33. student=json.loads(json_str,object_hook=dict2Student)
上一篇:ADO.NET 【属性扩展】性别、年龄、编号


下一篇:微信电脑版(Mac和Windows)安装