Answers for "list of dict to json python"

4

list of dictionaries to json python

import json

with open('data.json', 'w') as fp:
    json.dump(data, fp)
Posted by: Guest on August-26-2020

Code answers related to "list of dict to json python"

Python Answers by Framework

Browse Popular Code Answers by Language