Answers for "convert list to json dictionary"

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 "convert list to json dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language