Python implements the class Object conversion to json/dictionary method, pythonjson

Source: Internet
Author: User

Python implements the class Object conversion to json/dictionary method, pythonjson

This example describes how to convert a class object to a json dictionary in python. We will share this with you for your reference. The details are as follows:

#-*-Encoding: UTF-8-*-class Student: name = ''age = 0 def _ init _ (self, name, age): self. name = name self. age = agedef convert_to_dict (obj): ''' converts an Object to a Dict Object ''' dict = {} dict. update (obj. _ dict _) return dictdef convert_to_dicts (objs): ''' converts the object list to the dictionary list ''' obj_arr = [] for o in objs: # convert an Object to a Dict Object dict ={} dict. update (o. _ dict _) obj_arr.append (dict) return obj_arrdef class_to_dict (obj): ''' sets an object (single object, list, and set are supported) convert to the dictionary ''' is_list = obj. _ class _ = []. _ class _ is_set = obj. _ class _ = set (). _ class _ if is_list or is_set: obj_arr = [] for o in obj: # convert an Object to a Dict Object dict ={} dict. update (o. _ dict _) obj_arr.append (dict) return obj_arr else: dict ={} dict. update (obj. _ dict _) return dictstu = Student ('hangsan ', 20) print' ----------- 'print convert_to_dict (stu) print '----------- 'converprint t_to_dicts ([stu, stu]) print '----------- 'print class_to_dict (stu) print' ----------- 'print class_to_dict ([stu, stu]) stua = Student ('hangsan', 20) stub = Student ('lisi ', 10) stu_set = set () stu_set.add (stua) stu_set.add (stub) print class_to_dict (stu_set)

The running result is as follows:

-----------{'age': 20, 'name': 'zhangsan'}-----------[{'age': 20, 'name': 'zhangsan'}, {'age': 20, 'name': 'zhangsan'}]-----------{'age': 20, 'name': 'zhangsan'}-----------[{'age': 20, 'name': 'zhangsan'}, {'age': 20, 'name': 'zhangsan'}][{'age': 10, 'name': 'lisi'}, {'age': 20, 'name': 'zhangsan'}]

I hope this article will help you with Python programming.

Articles you may be interested in:
  • Analysis of Class usage examples in Python
  • Deep understanding of metaclass in Python)
  • Usage of class definition such as basic python tutorials
  • Examples of conversion between dictionaries and JSON in Python
  • Convert a dictionary to its json string in python
  • Python converts the json format to a text or SQL File

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.