black and yellow printed paper
Photo by Ferenc Almasi on Unsplash

If your project is in some ways connected to a third-party API, then you are probably going to need to handle some JSON data.

In case you do not know what it means, it represents the most commonly used data format that is used to exchange data.

There can be many cases when you may need to convert a JSON object into a list. This is actually quite simple and easy in Python.

Let us assume that we have the following JSON that we have just received:

Now we can simply import the module json and call its load() function:

Now, when we print it, we are going to see the following:

Here is the complete example:

That’s pretty much it. 

I hope you find this useful.