Data serialization is the process of converting structured data to a format that allows sharing or storage of the data in a form that allows recovery of its original structure. In some cases, the secondary intention of data serialization is to minimize the data’s size which then reduces disk space or bandwidth requirements.
It’s common to transmit and receive data between a server and web application in JSON format.
john = {"name":"Folau","age":30} jjohn = json.dumps(john, indent = 2, sort_keys=True) print(jjohn)