Skip to content
Advertisement

Convert nested list to JSON using Python

I’m using the following SQL query to get data for every month in a given year:

JavaScript

When I’m returning this via Python, I’m getting the following result:

JavaScript

Also, there are n everywhere in the result. I need the result in JSON format, but I can’t get it right. How can I do it?

Advertisement

Answer

If l is the list you display, simple use json.dumps:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement