The following four functions of the json module are mainly related to json reading and writing in python
dumps() encode a python object into a json object
loads() tells a json object to be parsed into a python object
dump() write python object to file
load() read json data from file
Recommended Posts