When I was learning python, I came up with json.dumps () etc. First of all, what is JSON? I checked it next to me.
Here's what I learned about JSON.
__ Reference article __ Thorough dissection of json-style scripts that even non-engineers can understand!
[Python] How to use JSON data (json module)
JSON is a data description format
used in JavaScript.
JSON(JavaScript Object Notation) First, JavaScript is one of the programming languages.
It is mainly used on web browsers and is characterized by its light operation and fast execution speed.
● A very easy-to-use format that can be read by program languages other than JavaScript.
● The amount of data is small and communication can be performed smoothly.
● It is easy to understand what data is and it is easy to read.
● Where JavaScript is used
● Where priority is given to the characters to be handled and readability
Is there any problem in python if I read, export and convert the format?
Fix Programming → programming language
Recommended Posts