Save and load Python data with JSON

JSON stands for JavaScript Object Notation. This format is a popular method of storing data in key-value arrangements so it can be parsed easily later. Don’t let the name fool you, though: You can use JSON in Python—not just JavaScript—as an easy way to store data, and this article demonstrates how to get started.First, take a look at this simple JSON snippet:read more

Source: LXer – Save and load Python data with JSON